:root {
  --navy: #0a1628;
  --navy-soft: #122038;
  --teal: #0d4f5c;
  --teal-mid: #146877;
  --emerald: #1a9b7a;
  --emerald-soft: #2bb892;
  --gold: #d4a84b;
  --gold-soft: #e6c47a;
  --cream: #e8f0f4;
  --mist: #b8c9d4;
  --white: #ffffff;
  --glass: rgba(18, 32, 56, 0.72);
  --glass-border: rgba(232, 240, 244, 0.12);
  --shadow: 0 18px 48px rgba(4, 10, 20, 0.35);
  --radius: 1.25rem;
  --font-display: "Unbounded", sans-serif;
  --font-body: "Outfit", sans-serif;
  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--cream);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(26, 155, 122, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(212, 168, 75, 0.1), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, #07101c 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--emerald-soft);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
.hero-title,
.section-title,
.game-title,
.brand-name,
.footer-heading,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  text-wrap: balance;
}

.age-topbar {
  background: linear-gradient(90deg, #061018 0%, var(--teal) 50%, #061018 100%);
  border-bottom: 1px solid rgba(212, 168, 75, 0.25);
  padding: 0.65rem 0;
  position: relative;
  z-index: 30;
}

.age-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  text-align: center;
}

.age-topbar p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--mist);
  max-width: 52rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 168, 75, 0.15);
  border: 1px solid rgba(212, 168, 75, 0.45);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(10, 22, 40, 0.88);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.site-navbar {
  padding: 0.85rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white) !important;
  text-decoration: none;
}

.brand-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--emerald), var(--teal));
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(26, 155, 122, 0.35);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.brand-tag {
  font-size: 0.68rem;
  color: var(--mist);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.navbar-nav .nav-link {
  color: var(--mist) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.55rem 0.9rem !important;
  border-radius: 0.65rem;
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(26, 155, 122, 0.12);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  border-radius: 2px;
}

.custom-toggler {
  border: 1px solid var(--glass-border);
  background: var(--navy-soft);
  padding: 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  border-radius: 0.65rem;
  box-shadow: none;
}

.custom-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(26, 155, 122, 0.35);
}

.toggler-line {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.75rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }
}

.hero-banner {
  position: relative;
  min-height: calc(100vh - 7.5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 16, 28, 0.92) 0%, rgba(10, 22, 40, 0.72) 48%, rgba(13, 79, 92, 0.45) 100%),
    linear-gradient(to top, rgba(7, 16, 28, 0.95) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.min-vh-hero {
  min-height: calc(100vh - 11rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding-left: 0.9rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--mist);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, var(--emerald), var(--teal-mid));
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(26, 155, 122, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-primary-glow:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26, 155, 122, 0.5);
  filter: brightness(1.06);
}

.btn-outline-light-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border: 1px solid rgba(232, 240, 244, 0.22);
  font-weight: 500;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline-light-soft:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 168, 75, 0.45);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition);
}

.hero-feature:hover {
  border-color: rgba(26, 155, 122, 0.45);
  transform: translateX(-4px);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 155, 122, 0.18);
  color: var(--emerald-soft);
  flex-shrink: 0;
}

.hero-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.hero-feature span {
  font-size: 0.88rem;
  color: var(--mist);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-hint a {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 240, 244, 0.2);
  color: var(--mist);
}

.hero-scroll-hint a:hover {
  color: var(--gold);
  border-color: rgba(212, 168, 75, 0.5);
}

.games-section {
  padding: 5rem 0 4.5rem;
  position: relative;
}

.games-header {
  margin-bottom: 2.75rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--emerald-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: inline-block;
  border-bottom: 3px solid rgba(212, 168, 75, 0.65);
  padding-bottom: 0.45rem;
}

.section-text {
  color: var(--mist);
  font-size: 1.05rem;
  margin: 1rem auto 0;
  max-width: 42rem;
}

.section-text.wide {
  max-width: 48rem;
}

.game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(18, 32, 56, 0.95), rgba(13, 79, 92, 0.28));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition);
}

.game-card:hover {
  border-color: rgba(26, 155, 122, 0.45);
  transform: translateY(-4px);
}

.game-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-soft);
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.game-card:hover .game-media img {
  transform: scale(1.04);
}

.game-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.game-type {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.game-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.game-title a {
  color: var(--white);
}

.game-title a:hover {
  color: var(--emerald-soft);
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  width: 100%;
  background: linear-gradient(135deg, var(--emerald), var(--teal-mid));
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.2rem;
  border-radius: 0.85rem;
  transition: filter var(--transition), box-shadow var(--transition);
}

.btn-play:hover {
  color: var(--white);
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(26, 155, 122, 0.35);
}

.content-section {
  padding: 5rem 0;
  position: relative;
}

.content-paragraph {
  color: var(--mist);
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
}

.content-paragraph:last-of-type {
  margin-bottom: 0;
}

.about-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-panel-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.3rem;
  background: linear-gradient(160deg, rgba(18, 32, 56, 0.92), rgba(13, 79, 92, 0.22));
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.about-panel-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 155, 122, 0.16);
  color: var(--emerald-soft);
  flex-shrink: 0;
}

.about-panel-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.about-panel-item p {
  margin: 0;
  color: var(--mist);
  font-size: 0.94rem;
}

.experience-header {
  margin-bottom: 2.5rem;
}

.info-block {
  height: 100%;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(165deg, rgba(18, 32, 56, 0.95), rgba(13, 79, 92, 0.25));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.info-block-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 75, 0.12);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.info-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.info-block p {
  margin: 0;
  color: var(--mist);
  font-size: 0.96rem;
}

.value-tile {
  height: 100%;
  padding: 1.4rem 1.25rem;
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.value-tile i {
  color: var(--emerald-soft);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.value-tile h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-tile p {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
}

.disclaimer-section {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.disclaimer-panel {
  padding: 2.5rem 2rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(212, 168, 75, 0.1), transparent 55%),
    linear-gradient(160deg, rgba(18, 32, 56, 0.96), rgba(13, 79, 92, 0.35));
  border: 1px solid rgba(212, 168, 75, 0.28);
  border-radius: calc(var(--radius) + 0.25rem);
  box-shadow: var(--shadow);
}

.disclaimer-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-point {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: rgba(7, 16, 28, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: 0.9rem;
}

.disclaimer-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 75, 0.14);
  color: var(--gold);
  flex-shrink: 0;
}

.disclaimer-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.disclaimer-point p {
  margin: 0;
  color: var(--mist);
  font-size: 0.9rem;
}

.disclaimer-foot {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
  color: var(--mist);
  font-size: 0.95rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 3.5rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(6, 16, 24, 0.95));
  border-top: 1px solid var(--glass-border);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 0.85rem;
}

.footer-brand .brand-icon {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.95rem;
}

.footer-text,
.footer-note,
.footer-disclaimer {
  color: var(--mist);
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
}

.footer-disclaimer {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  line-height: 1.5;
}

.footer-disclaimer i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.footer-badge-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 0.5rem;
  padding: 0.35rem 0.55rem;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: var(--mist);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--emerald-soft);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--mist);
  font-size: 0.82rem;
}

.no-scroll {
  overflow: hidden !important;
  height: 100%;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 10, 20, 0.88);
  backdrop-filter: blur(10px);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-card {
  width: min(100%, 34rem);
  background: linear-gradient(165deg, rgba(18, 32, 56, 0.98), rgba(13, 79, 92, 0.45));
  border: 1px solid rgba(212, 168, 75, 0.35);
  border-radius: 1.35rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
}

.age-gate-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 75, 0.14);
  color: var(--gold);
  font-size: 1.35rem;
  box-shadow: 0 0 28px rgba(212, 168, 75, 0.25);
}

.age-gate-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.age-gate-card p {
  color: var(--mist);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.age-gate-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
  background: rgba(7, 16, 28, 0.45);
  border: 1px solid var(--glass-border);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  margin: 1.1rem 0 1.2rem;
  color: var(--cream);
  font-size: 0.9rem;
  cursor: pointer;
}

.age-gate-check input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--emerald);
  flex-shrink: 0;
}

.age-gate-btn {
  width: 100%;
  justify-content: center;
}

.age-gate-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: none;
}

.age-gate-note {
  margin: 0.9rem 0 0 !important;
  font-size: 0.8rem !important;
  color: var(--mist);
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9990;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-consent-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(145deg, rgba(18, 32, 56, 0.97), rgba(13, 79, 92, 0.55));
  border: 1px solid var(--glass-border);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
}

.cookie-consent-text {
  flex: 1 1 18rem;
}

.cookie-consent-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.cookie-consent-text p {
  margin: 0;
  color: var(--mist);
  font-size: 0.88rem;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-link-btn {
  padding: 0.7rem 1.15rem;
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--glass-border);
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(26, 155, 122, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(13, 79, 92, 0.18), transparent);
}

.page-hero .section-label {
  margin-bottom: 0.75rem;
}

.page-hero .hero-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.page-hero-lead {
  max-width: 46rem;
  color: var(--mist);
  font-size: 1.05rem;
  margin: 0;
}

.page-content {
  padding: 3.5rem 0 4.5rem;
}

.policy-content h2,
.article-block h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.85rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}

.policy-content h3,
.article-block h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.65rem;
}

.policy-content p,
.article-block p,
.policy-content li,
.article-block li {
  color: var(--mist);
  font-size: 1rem;
}

.policy-content ul,
.article-block ul {
  padding-left: 1.2rem;
  margin-bottom: 1.1rem;
}

.policy-content li,
.article-block li {
  margin-bottom: 0.45rem;
}

.contact-email-box {
  margin-top: 1.75rem;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(160deg, rgba(18, 32, 56, 0.95), rgba(13, 79, 92, 0.3));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: inline-flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-email-box span {
  color: var(--mist);
  font-size: 0.9rem;
}

.contact-email-box a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}

.faq-item {
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
  background: rgba(18, 32, 56, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.faq-item p {
  margin: 0;
  color: var(--mist);
}

.game-play-wrap {
  padding: 2.5rem 0 3rem;
}

.game-disclaimer {
  margin-top: 2rem;
  padding: 1.5rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 168, 75, 0.3);
  background: rgba(18, 32, 56, 0.8);
}

.game-disclaimer h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.game-disclaimer p {
  margin: 0 0 0.75rem;
  color: var(--mist);
  font-size: 0.95rem;
}

.game-disclaimer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .age-topbar p {
    font-size: 0.74rem;
  }

  .hero-banner {
    min-height: auto;
  }

  .min-vh-hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    padding-left: 0.75rem;
  }

  .games-section,
  .content-section,
  .page-content {
    padding: 3.5rem 0 3rem;
  }

  .page-hero {
    padding: 2.5rem 0 2rem;
  }

  .disclaimer-panel {
    padding: 1.75rem 1.25rem;
  }

  .footer-badge-img {
    height: 36px;
  }

  .cookie-consent {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }
}
