@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");

:root {
  --cream: #faf5ec;
  --cream-warm: #f5edd8;
  --parchment: #e8d9bc;
  --ochre: #c8860a;
  --ochre-light: #e8a020;
  --ochre-bright: #f5bc40;
  --bronze: #a0600a;
  --bronze-dark: #6a3d06;
  --sienna: #8b3a0a;
  --sienna-light: #c05520;
  --earth: #5a3010;
  --earth-deep: #2e1808;
  --sage: #5a7a40;
  --sage-light: #7aaa55;
  --dust: #c8a870;
  --dust-light: #e0c898;
  --shadow: rgba(46, 24, 8, 0.08);
  --shadow-md: rgba(46, 24, 8, 0.15);
  --shadow-lg: rgba(46, 24, 8, 0.25);

  --font-display: "Playfair Display", serif;
  --font-body: "Lora", serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --border: 1px solid rgba(168, 96, 10, 0.18);
  --border-warm: 1px solid rgba(168, 96, 10, 0.3);
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--earth);
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 28px,
      rgba(200, 134, 10, 0.025) 28px,
      rgba(200, 134, 10, 0.025) 29px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 28px,
      rgba(200, 134, 10, 0.025) 28px,
      rgba(200, 134, 10, 0.025) 29px
    );
  pointer-events: none;
  z-index: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--earth-deep);
}
h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 600;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bronze-dark);
}

p {
  color: var(--earth);
}
a {
  color: var(--ochre);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--bronze);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
section {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--earth);
  opacity: 0.75;
  max-width: 600px;
  margin-bottom: 3rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.75rem;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ochre), transparent);
  max-width: 80px;
}
.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--ochre);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn:hover::after {
  transform: scaleX(1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
  color: white;
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 134, 10, 0.45);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--bronze-dark);
  border: 2px solid var(--ochre);
}
.btn-secondary:hover {
  background: var(--ochre);
  color: white;
}

.btn-sienna {
  background: linear-gradient(135deg, var(--sienna), var(--sienna-light));
  color: white;
  box-shadow: 0 4px 18px rgba(139, 58, 10, 0.3);
}
.btn-sienna:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 58, 10, 0.4);
  color: white;
}

.card {
  background: white;
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: 0 2px 16px var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--ochre),
    var(--ochre-bright),
    var(--ochre)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-md);
  border-color: rgba(200, 134, 10, 0.35);
}
.card:hover::before {
  transform: scaleX(1);
}

#age-gate {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, var(--earth-deep), #3d2010);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate-box {
  background: var(--cream);
  border: 2px solid var(--ochre);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow:
    0 0 80px rgba(200, 134, 10, 0.2),
    inset 0 0 0 6px rgba(200, 134, 10, 0.06);
  position: relative;
  overflow: hidden;
}
.age-gate-box::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.age-gate-emblem {
  margin-bottom: 1.5rem;
  display: block;
}
.age-gate-box h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  color: var(--earth-deep);
}
.age-gate-box p {
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  color: var(--earth);
}
.age-gate-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--earth-deep);
  border-top: 3px solid var(--ochre);
  padding: 1.25rem 2rem;
  z-index: 8888;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-banner.visible {
  transform: translateY(0);
}
#cookie-banner p {
  font-size: 0.85rem;
  flex: 1;
  min-width: 200px;
  color: var(--dust-light);
}
#cookie-banner a {
  color: var(--ochre-light);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(250, 245, 236, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 134, 10, 0.2);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 3px 12px rgba(200, 134, 10, 0.35);
  font-size: 1.2rem;
  transform: rotate(2deg);
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-badge {
  transform: rotate(-2deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--earth-deep);
  line-height: 1.15;
}
.nav-logo-text span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 400;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 600;
  padding: 0.2rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--ochre);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover {
  color: var(--ochre);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--earth-deep);
  transition: var(--transition);
  border-radius: 2px;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--earth-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.mobile-menu a:hover {
  color: var(--ochre-bright);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background: linear-gradient(160deg, var(--cream) 50%, var(--cream-warm) 100%);
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(160deg, var(--cream-warm), var(--parchment));
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid rgba(200, 134, 10, 0.25);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
}
.hero-title .line-accent {
  color: var(--ochre);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--ochre);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--earth);
  opacity: 0.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  font-family: var(--font-display);
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 8rem 3rem 5rem;
}
.hero-visual svg {
  width: 100%;
  height: auto;
  max-height: 580px;
}

#about {
  padding: 7rem 0;
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 60px var(--shadow-md);
}
.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(200, 134, 10, 0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(200, 134, 10, 0.12),
    rgba(232, 160, 32, 0.08)
  );
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  font-size: 1rem;
  flex-shrink: 0;
}
.about-feature-text h4 {
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}
.about-feature-text p {
  font-size: 0.85rem;
  opacity: 0.75;
}

#games {
  padding: 7rem 0;
  background: var(--cream-warm);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.game-card {
  background: white;
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 24px var(--shadow);
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-lg);
}
.game-banner {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.game-banner > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-bright));
  color: white;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(200, 134, 10, 0.4);
}

.game-body {
  padding: 1.75rem;
}
.game-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--earth-deep);
  margin-bottom: 0.5rem;
}
.game-desc {
  font-size: 0.88rem;
  color: var(--earth);
  opacity: 0.8;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.game-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.game-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.73rem;
  color: var(--bronze);
  background: rgba(200, 134, 10, 0.07);
  border: 1px solid rgba(200, 134, 10, 0.18);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-style: italic;
}
.play-btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem;
}

#game-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 24, 8, 0.96);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#game-modal.open {
  display: flex;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin-bottom: 1rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 700;
}
.modal-close {
  background: rgba(200, 134, 10, 0.2);
  border: 1px solid rgba(200, 134, 10, 0.3);
  border-radius: var(--radius-full);
  color: var(--cream);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover {
  background: rgba(200, 134, 10, 0.4);
}
#game-frame {
  width: 100%;
  max-width: 1100px;
  height: 75vh;
  border: 2px solid rgba(200, 134, 10, 0.25);
  border-radius: var(--radius-md);
  background: var(--earth-deep);
}

#how {
  padding: 7rem 0;
  background: white;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px var(--shadow-md);
  border-color: rgba(200, 134, 10, 0.35);
}
.step-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(200, 134, 10, 0.07);
  line-height: 1;
}
.step-icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 6px 20px rgba(200, 134, 10, 0.3);
  transition: var(--transition);
}
.step-card:hover .step-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 10px 28px rgba(200, 134, 10, 0.4);
}
.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}
.step-card p {
  font-size: 0.86rem;
  opacity: 0.75;
}

#promos {
  padding: 7rem 0;
  background: var(--earth-deep);
  position: relative;
  overflow: hidden;
}
#promos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 10% 50%,
      rgba(200, 134, 10, 0.08),
      transparent
    ),
    radial-gradient(
      ellipse 50% 60% at 90% 30%,
      rgba(139, 58, 10, 0.1),
      transparent
    );
}
#promos .section-label {
  color: var(--ochre-bright);
}
#promos .section-title {
  color: var(--cream);
}
#promos .section-subtitle {
  color: var(--dust-light);
  opacity: 0.7;
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.promo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.promo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ochre), transparent);
  opacity: 0;
  transition: var(--transition);
}
.promo-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 134, 10, 0.4);
  transform: translateY(-5px);
}
.promo-card:hover::after {
  opacity: 1;
}
.promo-icon {
  font-size: 2.8rem;
  color: var(--ochre-bright);
  display: block;
  margin-bottom: 1.25rem;
}
.promo-card:nth-child(2) .promo-icon {
  color: var(--sienna-light);
}
.promo-card:nth-child(3) .promo-icon {
  color: var(--sage-light);
}
.promo-badge {
  display: inline-block;
  border: 1px solid rgba(200, 134, 10, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--ochre-bright);
  padding: 0.2rem 0.75rem;
  margin-bottom: 1rem;
}
.promo-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.promo-card p {
  font-size: 0.88rem;
  color: var(--dust-light);
  opacity: 0.8;
  line-height: 1.65;
}

#reviews {
  padding: 7rem 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.review-card {
  background: white;
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px var(--shadow);
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px var(--shadow-md);
}
.review-quote {
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(200, 134, 10, 0.12);
  font-family: Georgia, serif;
}
.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--ochre);
  font-size: 0.85rem;
}
.review-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--earth);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--earth-deep);
}
.reviewer-loc {
  font-size: 0.74rem;
  color: var(--ochre);
  margin-top: 0.1rem;
}

#contact {
  padding: 7rem 0;
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(
    135deg,
    rgba(200, 134, 10, 0.12),
    rgba(232, 160, 32, 0.08)
  );
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}
.contact-item-text p {
  font-size: 0.88rem;
  opacity: 0.75;
}

.contact-form {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--bronze);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: white;
  border: 1.5px solid rgba(200, 134, 10, 0.2);
  border-radius: var(--radius-sm);
  color: var(--earth-deep);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(90, 48, 16, 0.35);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-group select option {
  background: white;
  color: var(--earth-deep);
}
.form-error {
  font-size: 0.77rem;
  color: var(--sienna);
  margin-top: 0.3rem;
  display: none;
}
.form-success {
  text-align: center;
  padding: 1.5rem;
  display: none;
}
.form-success i {
  font-size: 2.5rem;
  color: var(--sage-light);
  margin-bottom: 0.75rem;
  display: block;
}
.form-success h4 {
  font-family: var(--font-display);
  color: var(--earth-deep);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.88rem;
}

#faq {
  padding: 7rem 0;
  background: var(--cream-warm);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: var(--transition);
  background: white;
}
.faq-item.open {
  border-color: rgba(200, 134, 10, 0.35);
  box-shadow: 0 4px 20px var(--shadow);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--earth-deep);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--ochre);
}
.faq-chevron {
  color: var(--ochre);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.88rem;
  color: var(--earth);
  opacity: 0.8;
  line-height: 1.75;
}

#footer {
  background: var(--earth-deep);
  border-top: 3px solid var(--ochre);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  margin: 1rem 0 1.5rem;
  color: var(--dust-light);
  opacity: 0.75;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--ochre-bright);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--dust-light);
  opacity: 0.65;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--ochre-bright);
  opacity: 1;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 134, 10, 0.15);
  padding-top: 2rem;
}
.disclaimer {
  background: rgba(200, 134, 10, 0.07);
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.78rem;
  color: var(--dust-light);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--dust-light);
  opacity: 0.45;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: var(--dust-light);
  opacity: 0.5;
  font-size: 0.77rem;
}
.footer-legal a:hover {
  color: var(--ochre-bright);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-visual {
    display: none;
  }
  #hero::before {
    width: 100%;
    clip-path: none;
    opacity: 0.5;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .promos-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-copy {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  section {
    padding: 4.5rem 0 !important;
  }
}
@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .age-gate-box {
    padding: 2.5rem 1.5rem;
  }
  .hero-btns {
    flex-direction: column;
  }
}
