* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #1c1a26;
  color: #f7f3e8;
  color-scheme: light;
  font-family: "Georgia", "Times New Roman", serif;
}

.welcome {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background-image:
    linear-gradient(180deg, rgba(20, 18, 32, 0.65) 0%, rgba(20, 18, 32, 0.65) 100%),
    url("/fairytales/assets/images/fairytale_back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.welcome_overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.welcome_card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 28px;
  max-width: 640px;
  width: min(90vw, 640px);
  background: rgba(25, 22, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.welcome_tag {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.welcome_title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.welcome_subtitle {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.welcome_button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: #f7d488;
  color: #2c1f0f;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welcome_button:hover,
.welcome_button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}