@import url('https://i.pinimg.com/736x/64/23/78/642378ea3b73b1b7dea8f4c8a50c0570.jpg');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url('https://cur.cursors-4u.net/games/gam-2/gam116.cur'), auto;
}

body {
  font-family: 'MedievalSharp', cursive;
  background: url('https://i.ibb.co/kBv2q9h/medieval-bg-pixel.png') no-repeat center center fixed;
  background-size: cover;
  color: #f9f5e9;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dialogue Box */
.dialogue-box {
  background: url('https://png.pngtree.com/png-clipart/20230623/original/pngtree-old-paper-or-parchment-grunge-abstract-texture-vector-png-image_9211794.png');
  border: 4px solid #4e3822;
  border-radius: 16px;
  padding: 2rem;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  position: relative;
  text-align: center;
}

.dialogue-box::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 20px;
  background: url('https://i.ibb.co/98qGKr2/dialogue-tail.png') no-repeat center;
  background-size: contain;
}

/* Title */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #362c1a;
  text-shadow: 1px 1px #d9b86c;
}

/* Subtitle */
p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #3d2b1f;
}

/* RPG Button */
a.enter-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.2rem;
  background-color: #d4b06d;
  color: #1c1008;
  border: 3px solid #4a3424;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 10px #af8e4b;
}

a.enter-btn:hover {
  background-color: #fff0c4;
  box-shadow: 0 0 18px #ffd564;
  transform: scale(1.05);
}