/* ============================================
   EntertainmentClub.org — Main Stylesheet
   Font: Syne + DM Sans (unique pairing)
   Color Scheme: Deep Navy + Gold + Coral
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #0D0F1E;
  --navy-mid:   #141629;
  --navy-light: #1C1F38;
  --gold:       #E8B84B;
  --gold-light: #F5D07A;
  --coral:      #E8604B;
  --coral-soft: #F07A65;
  --white:      #FFFFFF;
  --offwhite:   #F0EDE6;
  --muted:      #8B8FA8;
  --card-bg:    rgba(255,255,255,0.04);
  --border:     rgba(232,184,75,0.18);
  --radius:     16px;
  --radius-sm:  8px;
  --radius-lg:  28px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 32px rgba(232,184,75,0.18);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.38);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--offwhite);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.tag {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #C9952E 100%);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,184,75,0.3);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,184,75,0.45);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--offwhite);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,184,75,0.06);
}

/* ── AGE GATE POPUP ── */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 22, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate__inner {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  max-width: 520px;
  width: 92%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate__badge {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--coral) 0%, #c0422d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 28px rgba(232,96,75,0.4);
}

.age-gate__title {
  font-size: clamp(24px, 5vw, 32px);
  color: var(--white);
  margin-bottom: 14px;
}

.age-gate__text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.age-gate__text strong {
  color: var(--offwhite);
}

.age-gate__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate__yes {
  background: linear-gradient(135deg, var(--gold) 0%, #C9952E 100%);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,184,75,0.3);
}
.age-gate__yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,184,75,0.45);
}

.age-gate__no {
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: var(--transition);
}
.age-gate__no:hover {
  border-color: var(--coral);
  color: var(--coral-soft);
}

.age-gate__disclaimer {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(139,143,168,0.7);
  line-height: 1.6;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8888;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  max-width: 680px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  animation: slideUp 0.4s ease both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner__text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__btn {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--transition);
}
.cookie-banner__btn:hover {
  background: var(--gold-light);
}

/* ── HEADER / NAV ── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

#site-header.scrolled {
  background: rgba(13,15,30,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.logo__icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(232,184,75,0.3);
}

.logo__text span { color: var(--gold); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__list a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav__list a:hover,
.nav__list a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav__cta {
  background: linear-gradient(135deg, var(--gold) 0%, #C9952E 100%);
  color: var(--navy) !important;
  font-family: 'Syne', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 16px rgba(232,184,75,0.25);
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO SECTION ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,15,30,0.92) 0%,
    rgba(13,15,30,0.75) 50%,
    rgba(13,15,30,0.55) 100%
  );
}

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,184,75,0.12);
  border: 1px solid rgba(232,184,75,0.28);
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero__title {
  font-size: clamp(38px, 6vw, 68px);
  color: var(--white);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(240,237,230,0.75);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-num span { color: var(--gold); }

.hero__stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── SECTION BASE ── */
.section {
  padding: 100px 0;
}

.section__header {
  margin-bottom: 64px;
}

.section__header--center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 14px;
}

.section__desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── FEATURES STRIP ── */
#features {
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--card-bg);
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: rgba(255,255,255,0.06); }

.feature-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feature-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── GAMES SECTION ── */
#games {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

#games::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232,184,75,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.game-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(232,184,75,0.25);
}

.game-card__preview {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}

.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card__img {
  transform: scale(1.04);
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,15,30,0.85) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card__play-btn {
  width: 68px;
  height: 68px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--navy);
  box-shadow: 0 8px 32px rgba(232,184,75,0.5);
  transform: scale(0.85);
  transition: transform 0.3s ease;
}
.game-card:hover .game-card__play-btn {
  transform: scale(1);
}

.game-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.game-card__body {
  padding: 28px 30px 32px;
}

.game-card__title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.game-card__desc {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.65;
}

.game-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.game-tag {
  font-size: 12px;
  color: var(--gold);
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.game-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, #C9952E 100%);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,184,75,0.2);
}
.game-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,184,75,0.4);
}

/* ── GAME MODAL ── */
.game-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,10,22,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.game-modal.open { display: flex; }

.game-modal__inner {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: popIn 0.35s ease both;
}

.game-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.game-modal__title {
  font-size: 22px;
  color: var(--white);
}

.game-modal__close {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.game-modal__close:hover {
  background: var(--coral);
  color: #fff;
}

.game-modal__body {
  padding: 32px;
}

.game-canvas {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.game-disclaimer {
  background: rgba(232,184,75,0.06);
  border: 1px solid rgba(232,184,75,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
.game-disclaimer strong { color: var(--gold); }

/* ── ABOUT SECTION ── */
#about {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#about::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,96,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,184,75,0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.about__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral-soft);
  background: rgba(232,96,75,0.08);
  border: 1px solid rgba(232,96,75,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.about__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(240,237,230,0.8);
  line-height: 1.6;
}

.about__list-icon {
  width: 22px;
  height: 22px;
  background: rgba(232,184,75,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── BONUSES SECTION ── */
#bonuses {
  background: var(--navy-mid);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  opacity: 0;
  transition: opacity 0.3s;
}
.bonus-card:hover::before { opacity: 1; }
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.bonus-card__emoji {
  font-size: 42px;
  margin-bottom: 20px;
  display: block;
}

.bonus-card__title {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}

.bonus-card__text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.bonus-card__tag {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── DISCLAIMER BANNER ── */
#disclaimer-banner {
  background: linear-gradient(135deg, rgba(232,96,75,0.08) 0%, rgba(232,184,75,0.06) 100%);
  border-top: 1px solid rgba(232,96,75,0.15);
  border-bottom: 1px solid rgba(232,96,75,0.15);
  padding: 32px 0;
}

.disclaimer-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.disclaimer-banner__icon {
  font-size: 32px;
  flex-shrink: 0;
}

.disclaimer-banner__text {
  font-size: 14.5px;
  color: rgba(240,237,230,0.75);
  line-height: 1.7;
}
.disclaimer-banner__text strong {
  color: var(--white);
  font-weight: 600;
}

/* ── FOOTER ── */
#site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 64px;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: var(--transition);
}
.footer__social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer__col-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }

/* ── REGULATORS BAR ── */
.footer__regulators {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.regulators__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.regulator-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.regulator-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.badge-18 {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #c0301a, #e05030);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.regulator-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.regulator-sub {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.3;
  display: block;
}

/* NCPG logo style */
.ncpg-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ncpg-logo .ncpg-big {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}
.ncpg-logo .ncpg-small {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.3;
}

.ga-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4ac0d, #f5d838);
  border: 2px solid #c0421a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

/* ── FOOTER BOTTOM ── */
.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(139,143,168,0.65);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: 13px;
  color: rgba(139,143,168,0.65);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: var(--gold); }

/* ── INNER PAGES ── */
.page-hero {
  padding: 130px 0 60px;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero__title {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero__sub {
  font-size: 16px;
  color: var(--muted);
}

.page-content {
  padding: 72px 0 100px;
}

.policy-body {
  max-width: 820px;
}

.policy-body h2 {
  font-size: 22px;
  color: var(--white);
  margin: 48px 0 16px;
}

.policy-body h3 {
  font-size: 17px;
  color: var(--offwhite);
  margin: 28px 0 10px;
}

.policy-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-body ul, .policy-body ol {
  margin: 0 0 18px 22px;
}

.policy-body li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
  list-style: disc;
}

.policy-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 40px 0;
}

.info-alert {
  background: rgba(232,184,75,0.07);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
}
.info-alert p {
  margin: 0;
  color: rgba(240,237,230,0.8) !important;
  font-size: 14.5px !important;
}

/* ── CONTACT PAGE ── */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact__info-item:last-child { border-bottom: none; }

.contact__info-icon {
  width: 42px;
  height: 42px;
  background: rgba(232,184,75,0.1);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact__info-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact__info-value {
  font-size: 15px;
  color: var(--offwhite);
  line-height: 1.5;
}
.contact__info-value a { color: var(--gold); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--offwhite);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 130px; }

.form-submit {
  background: linear-gradient(135deg, var(--gold) 0%, #C9952E 100%);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,184,75,0.3);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,184,75,0.45);
}

/* ── GAME RULES ── */
.rules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.rule-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.rule-card__num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(232,184,75,0.15);
  line-height: 1;
  margin-bottom: 14px;
}
.rule-card__title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.rule-card__text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .about__layout { grid-template-columns: 1fr; gap: 40px; }
  .about__image-wrap { aspect-ratio: 16/7; }
  .bonuses__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .games__grid { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; }
  .rules__grid { grid-template-columns: 1fr; }
  nav.site-nav { 
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13,15,30,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }
  nav.site-nav.open { display: flex; }
  .nav__list { flex-direction: column; gap: 6px; }
  .nav__list a { font-size: 20px; padding: 12px 24px; }
  .nav__hamburger { display: flex; z-index: 1001; position: relative; }
  .hero__stats { gap: 24px; }
  .footer__main { grid-template-columns: 1fr; gap: 32px; }
  .regulators__inner { gap: 12px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .bonuses__grid { grid-template-columns: 1fr; }
  .age-gate__inner { padding: 40px 28px; }
  #cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .game-card__preview { height: 220px; }
  .footer__main { grid-template-columns: 1fr; }
}
