@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --color-ink: #0e2422;
  --color-teal: #0b4f4a;
  --color-teal-deep: #063833;
  --color-teal-soft: #1a6b64;
  --color-gold: #c9a227;
  --color-gold-soft: #e2c45a;
  --color-pearl: #f3f0e8;
  --color-mist: #e8efe9;
  --color-ivory: #faf8f4;
  --color-slate: #4a5c59;
  --color-white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-soft: 0 18px 48px rgba(6, 56, 51, 0.14);
  --radius-md: 14px;
  --radius-lg: 28px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --nav-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(26, 107, 100, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 162, 39, 0.1), transparent 50%),
    linear-gradient(180deg, var(--color-ivory) 0%, var(--color-mist) 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar {
  background: linear-gradient(90deg, var(--color-teal-deep), var(--color-teal) 55%, #0a5c54);
  color: var(--color-pearl);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.65rem 0;
  text-align: center;
  position: relative;
  z-index: 30;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.topbar i {
  color: var(--color-gold-soft);
  font-size: 0.95rem;
}

.site-header {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 79, 74, 0.08);
  position: relative;
  z-index: 40;
}

.navbar-bsh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1rem;
  padding: 0.5rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-teal-deep);
}

.brand-logo:hover {
  color: var(--color-teal);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(11, 79, 74, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-teal);
  background: rgba(11, 79, 74, 0.07);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 79, 74, 0.15);
  background: var(--color-white);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.nav-toggle:hover {
  background: var(--color-mist);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--color-white);
  border-bottom: 1px solid rgba(11, 79, 74, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0 1.25rem;
  transform-origin: top center;
  animation: navDrop 0.32s var(--transition);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  font-weight: 500;
  color: var(--color-ink);
  border-left: 3px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-teal);
  background: rgba(11, 79, 74, 0.05);
  border-left-color: var(--color-gold);
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: clamp(520px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6, 56, 51, 0.88) 0%, rgba(11, 79, 74, 0.72) 42%, rgba(14, 36, 34, 0.55) 100%),
    url('../images/hero-bg.png') center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.28), transparent 70%);
  right: -8%;
  top: 18%;
  filter: blur(8px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5rem;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 1.15rem;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  animation: fadeUp 0.9s var(--transition) both;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(250, 248, 244, 0.92);
  max-width: 34rem;
  margin: 0 0 2rem;
  animation: fadeUp 0.9s 0.12s var(--transition) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s 0.22s var(--transition) both;
}

.btn-bsh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
}

.btn-bsh-primary {
  background: linear-gradient(135deg, var(--color-gold), #d4af37);
  color: var(--color-teal-deep);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.35);
}

.btn-bsh-primary:hover {
  transform: translateY(-2px);
  color: var(--color-teal-deep);
  box-shadow: 0 16px 34px rgba(201, 162, 39, 0.45);
}

.btn-bsh-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

.btn-bsh-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hero-ornament {
  position: absolute;
  bottom: 8%;
  right: 6%;
  z-index: 2;
  width: min(280px, 32vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  animation: spinSlow 40s linear infinite;
}

.hero-ornament-inner {
  width: 72%;
  height: 72%;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinSlow 28s linear infinite reverse;
}

.hero-ornament i {
  font-size: 2.4rem;
  color: var(--color-gold-soft);
  animation: none;
}

.section {
  padding: 5rem 0;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--color-teal-deep);
  margin: 0 0 0.85rem;
}

.section-text {
  color: var(--color-slate);
  font-size: 1.05rem;
  margin: 0;
}

.games-section {
  position: relative;
}

.games-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(201, 162, 39, 0.08), transparent 60%),
    radial-gradient(ellipse 45% 35% at 100% 80%, rgba(11, 79, 74, 0.08), transparent 55%);
  pointer-events: none;
}

.game-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.game-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 79, 74, 0.1);
  border-radius: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.game-thumb {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-teal-deep);
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.game-title a {
  color: var(--color-teal-deep);
  white-space: normal;
}

.game-title a:hover {
  color: var(--color-teal-soft);
}

.btn-bsh-play {
  flex-shrink: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-soft));
  color: var(--color-white);
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(11, 79, 74, 0.2);
}

.btn-bsh-play:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(11, 79, 74, 0.28);
}

.games-page-copy {
  margin-top: 1.75rem;
}

.btn-bsh-solid {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-soft));
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(11, 79, 74, 0.2);
}

.btn-bsh-solid:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-bsh-outline {
  background: transparent;
  border-color: rgba(11, 79, 74, 0.25);
  color: var(--color-teal-deep);
}

.btn-bsh-outline:hover {
  background: rgba(11, 79, 74, 0.06);
  color: var(--color-teal-deep);
  transform: translateY(-2px);
}

.section-intro-wide {
  max-width: 760px;
}

.content-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.content-split.reverse {
  direction: ltr;
}

.prose p {
  color: var(--color-slate);
  font-size: 1.05rem;
  margin: 0 0 1.15rem;
  line-height: 1.75;
}

.prose p:last-child {
  margin-bottom: 1.5rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.aside-panel {
  background: linear-gradient(160deg, var(--color-teal-deep), var(--color-teal));
  color: var(--color-pearl);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.aside-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.1rem;
  color: var(--color-white);
}

.aside-panel-soft {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-ink);
  border: 1px solid rgba(11, 79, 74, 0.1);
  box-shadow: none;
}

.aside-panel-soft h3 {
  color: var(--color-teal-deep);
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  color: rgba(243, 240, 232, 0.92);
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list i {
  color: var(--color-gold-soft);
  margin-top: 0.2rem;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--color-slate);
  font-size: 0.98rem;
}

.step-list li:last-child {
  margin-bottom: 0;
}

.step-list span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.info-block {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 79, 74, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.info-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-teal), var(--color-teal-soft));
  color: var(--color-gold-soft);
  margin-bottom: 1rem;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--color-teal-deep);
}

.info-block p {
  margin: 0;
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.7;
}

.disclaimer-panel {
  background: linear-gradient(145deg, var(--color-teal-deep) 0%, #0a4a45 55%, #0d5c54 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  color: rgba(243, 240, 232, 0.92);
  box-shadow: var(--shadow-soft);
}

.section-kicker-light {
  color: var(--color-gold-soft);
}

.section-title-light {
  color: var(--color-white);
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.disclaimer-col h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.disclaimer-col h3 i {
  color: var(--color-gold-soft);
}

.disclaimer-col p {
  margin: 0 0 1rem;
  line-height: 1.75;
  font-size: 1.02rem;
  color: rgba(243, 240, 232, 0.86);
}

.disclaimer-col p:last-child {
  margin-bottom: 0;
}

.disclaimer-note {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  color: rgba(243, 240, 232, 0.72);
}

.experience-section {
  background: linear-gradient(180deg, transparent, rgba(11, 79, 74, 0.04), transparent);
}

.site-footer {
  background: linear-gradient(180deg, var(--color-teal-deep), #042825);
  color: rgba(243, 240, 232, 0.88);
  padding: 3.75rem 0 2rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  margin: 0 0 1.25rem;
  max-width: 360px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(243, 240, 232, 0.72);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
}

.footer-badges a img {
  height: 48px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin: 0 0 1rem;
}

.footer-links a {
  display: block;
  padding: 0.32rem 0;
  color: rgba(243, 240, 232, 0.78);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-disclaimers {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35rem 0;
  margin-bottom: 1.35rem;
}

.footer-disclaimers p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(243, 240, 232, 0.7);
}

.footer-disclaimers p:last-child {
  margin-bottom: 0;
}

.footer-disclaimers strong {
  color: var(--color-gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(243, 240, 232, 0.6);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-item {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 79, 74, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-teal), var(--color-teal-soft));
  color: var(--color-gold-soft);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
  color: var(--color-teal-deep);
}

.feature-item p {
  margin: 0;
  color: var(--color-slate);
  font-size: 0.98rem;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .content-split {
    grid-template-columns: 1.45fr 0.9fr;
    gap: 2.5rem;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .disclaimer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .hero-ornament {
    display: flex;
  }

  .game-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }

  .game-item {
    flex: 1 1 0;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-width: 260px;
    padding: 0.75rem 1rem;
  }

  .game-thumb {
    width: 140px;
    height: 105px;
    aspect-ratio: auto;
  }

  .game-title {
    font-size: 1.05rem;
    text-align: left;
  }

  .game-title a {
    white-space: nowrap;
  }

  .btn-bsh-play {
    width: auto;
    padding: 0.5rem 0.95rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav.open {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }

  .game-item {
    min-width: 0;
  }

  .game-thumb {
    width: 160px;
    height: 120px;
  }

  .game-row {
    overflow: visible;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.78rem;
    padding: 0.55rem 0.75rem;
  }

  .brand-text strong {
    font-size: 1.05rem;
  }

  .hero-content {
    padding: 3.25rem 0 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-bsh {
    width: 100%;
  }

  .inline-actions .btn-bsh {
    width: 100%;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-intro {
    margin-bottom: 1.75rem;
  }

  .games-section .section-title {
    font-size: 1.7rem;
  }

  .page-hero {
    padding: 2.25rem 0 1.5rem;
  }

  .page-hero h1,
  .game-page-title {
    font-size: 1.85rem;
  }

  .page-hero .lead {
    font-size: 1rem;
  }

  .page-content {
    padding-bottom: 3rem;
  }

  .game-stage-wrap {
    margin: 1rem 0 1.5rem;
  }

  .game-disclaimer {
    padding: 1.1rem 1.15rem;
  }
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.site-modal[hidden],
.site-modal.is-hidden {
  display: none !important;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 40, 37, 0.78);
  backdrop-filter: blur(8px);
}

.site-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  background: linear-gradient(165deg, #faf8f4, #eef5f2);
  border: 1px solid rgba(11, 79, 74, 0.12);
  border-radius: 24px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 60px rgba(4, 40, 37, 0.35);
}

.site-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-teal), var(--color-teal-soft));
  color: var(--color-gold-soft);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.site-modal-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-teal-deep);
  margin: 0 0 0.85rem;
}

.site-modal-card p {
  color: var(--color-slate);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 0.9rem;
}

.modal-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.2rem 0 1.35rem;
  font-size: 0.92rem;
  color: var(--color-ink);
  cursor: pointer;
}

.modal-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-teal);
  flex-shrink: 0;
}

#age-accept {
  width: 100%;
}

#age-accept:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.cookie-modal {
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}

.cookie-modal .site-modal-card,
.cookie-modal-card {
  pointer-events: auto;
  width: min(100%, 920px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-radius: 18px;
  background: rgba(250, 248, 244, 0.96);
  box-shadow: 0 16px 40px rgba(4, 40, 37, 0.22);
}

.cookie-modal-copy {
  flex: 1 1 280px;
}

.cookie-modal-copy h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.cookie-modal-copy p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-modal-copy a {
  color: var(--color-teal);
  text-decoration: underline;
}

.cookie-modal-actions {
  flex-shrink: 0;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(11, 79, 74, 0.1), transparent 50%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-teal-deep);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.page-hero .lead {
  max-width: 720px;
  color: var(--color-slate);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}

.page-content {
  padding: 0 0 4.5rem;
}

.page-content .prose {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 860px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 79, 74, 0.1);
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-teal-deep);
  margin: 0 0 0.55rem;
}

.faq-item p {
  margin: 0;
  color: var(--color-slate);
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-soft));
  color: var(--color-white);
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(11, 79, 74, 0.22);
}

.contact-email:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

.policy-notice {
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--color-gold);
  background: rgba(11, 79, 74, 0.06);
  border-radius: 0 14px 14px 0;
  color: var(--color-slate);
}

.game-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-teal-deep);
  margin: 0 0 0.5rem;
}

.game-page-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.game-stage-wrap {
  margin: 1.5rem 0 2rem;
}

.game-disclaimer {
  max-width: 860px;
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 79, 74, 0.1);
}

.game-disclaimer h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-teal-deep);
  margin: 0 0 0.65rem;
}

.game-disclaimer p {
  margin: 0 0 0.75rem;
  color: var(--color-slate);
  line-height: 1.7;
}

.game-disclaimer p:last-child {
  margin-bottom: 0;
}

.ads-compliance {
  font-size: 0.92rem;
  color: var(--color-slate);
  line-height: 1.7;
}
