/* =============================================
   FunPeacockClub - Main Stylesheet
   Social Casino India - Light Theme
   ============================================= */

:root {
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --gold-dark: #B8960C;
  --teal: #00897B;
  --teal-light: #4DB6AC;
  --teal-dark: #00695C;
  --cyan: #00BCD4;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --cream: #FFF9EE;
  --light-gray: #F0EDE6;
  --mid-gray: #9E9E9E;
  --dark: #1A2B2B;
  --text-dark: #2C3E3E;
  --text-mid: #4A5E5E;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-mid); line-height: 1.75; }

a { text-decoration: none; color: inherit; }

/* =============================================
   AGE VERIFICATION POPUP
   ============================================= */

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 43, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
}

.age-gate-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.age-gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.age-gate-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.age-gate-card h2 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.age-gate-card p {
  font-size: 0.95rem;
  margin-bottom: 28px;
  color: var(--text-mid);
}

.age-gate-18 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
  animation: pulse-gold 2s infinite;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-enter {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,137,123,0.4);
  letter-spacing: 0.5px;
}

.btn-enter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,137,123,0.5);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
}

.btn-decline {
  background: transparent;
  color: var(--text-mid);
  border: 2px solid var(--light-gray);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-decline:hover {
  border-color: var(--mid-gray);
  color: var(--text-dark);
}

.age-gate-disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  background: var(--cream);
  color: var(--teal-dark);
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 12px rgba(0,137,123,0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(0,137,123,0.4);
  background: linear-gradient(135deg, var(--teal-light), var(--teal)) !important;
}

.header-18 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  background: linear-gradient(145deg, #F8F6F0 0%, #EFF8F6 40%, #FFF9EE 100%);
  padding: 80px 24px 100px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,188,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,137,123,0.1);
  border: 1px solid rgba(0,137,123,0.2);
  color: var(--teal-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.hero h1 {
  color: var(--dark);
  margin-bottom: 16px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 36px;
  color: var(--text-mid);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,137,123,0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,137,123,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--teal-dark);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(0,137,123,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(0,137,123,0.08);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

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

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: block;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--mid-gray);
  font-weight: 500;
  display: block;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-peacock-bg {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(0,188,212,0.08) 0%, rgba(212,175,55,0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(212,175,55,0.2);
}

.hero-peacock-bg::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(0,137,123,0.25);
  animation: rotate-slow 20s linear infinite;
}

.hero-peacock-bg::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.15);
  animation: rotate-slow 30s linear infinite reverse;
}

.hero-logo-big {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,137,123,0.2));
  animation: float 4s ease-in-out infinite;
}

/* =============================================
   SECTION COMMONS
   ============================================= */

section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* =============================================
   GAME CARDS SECTION
   ============================================= */

.games-section {
  background: var(--white);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,0.15);
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.4);
}

.game-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.game-card-thumb canvas,
.game-card-thumb .game-preview-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.game-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.game-card-badge.new {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,43,43,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.btn-play-now {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-play-now:hover {
  transform: scale(1.03);
}

.game-card-body {
  padding: 20px 24px 24px;
}

.game-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.game-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.game-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.game-tag {
  background: var(--light-gray);
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.game-tag.teal {
  background: rgba(0,137,123,0.1);
  color: var(--teal-dark);
}

/* =============================================
   FEATURES SECTION
   ============================================= */

.features-section {
  background: linear-gradient(145deg, var(--cream) 0%, var(--off-white) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,0.12);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,137,123,0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,137,123,0.1), rgba(0,188,212,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.feature-card h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* =============================================
   RESPONSIBLE GAMING BANNER
   ============================================= */

.responsible-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--dark) 100%);
  color: white;
  padding: 60px 24px;
}

.responsible-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.responsible-banner h2 {
  color: white;
  margin-bottom: 16px;
}

.responsible-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.responsible-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-2px);
}

.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold-solid:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* =============================================
   REGULATORS SECTION
   ============================================= */

.regulators-section {
  background: var(--white);
  padding: 48px 24px;
}

.regulators-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.regulators-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 28px;
}

.regulators-logos {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.regulator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  text-decoration: none;
  min-width: 120px;
}

.regulator-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0,137,123,0.2);
}

.regulator-item .reg-icon {
  font-size: 1.8rem;
}

.regulator-item .reg-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.regulator-item .reg-desc {
  font-size: 0.68rem;
  color: var(--mid-gray);
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(0,188,212,0.2);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-18-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* =============================================
   PAGE HEADER (inner pages)
   ============================================= */

.page-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--dark) 100%);
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 60% 40%, rgba(212,175,55,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  color: white;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--gold-light);
  font-weight: 600;
}

/* =============================================
   CASINO GAME UI
   ============================================= */

.game-page {
  background: linear-gradient(145deg, var(--off-white) 0%, var(--cream) 100%);
  min-height: calc(100vh - 72px);
  padding: 40px 24px;
}

.game-container {
  max-width: 900px;
  margin: 0 auto;
}

.game-ui-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.2);
}

.game-ui-header {
  background: linear-gradient(135deg, var(--dark) 0%, #243535 100%);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.game-ui-title {
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.balance-display {
  display: flex;
  align-items: center;
  gap: 16px;
}

.balance-box {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  padding: 8px 20px;
  text-align: center;
}

.balance-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.balance-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
  font-family: 'Playfair Display', serif;
}

.balance-amount .currency {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Spins counter */
.spins-box {
  background: rgba(0,188,212,0.12);
  border: 1px solid rgba(0,188,212,0.3);
}

.spins-box .balance-amount {
  color: var(--cyan);
}

/* =============================================
   SLOT MACHINE
   ============================================= */

.slot-machine {
  padding: 32px 28px;
}

.slot-reels-wrapper {
  background: linear-gradient(135deg, #1a2b2b 0%, #243535 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
  position: relative;
  border: 2px solid rgba(212,175,55,0.3);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.slot-reels-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, transparent 5%, rgba(212,175,55,0.3) 45%, rgba(212,175,55,0.3) 55%, transparent 95%);
  pointer-events: none;
}

.slot-lights {
  display: flex;
  justify-content: space-around;
  margin-bottom: 16px;
}

.slot-light {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: casino-lights 0.8s infinite alternate;
}

.slot-light:nth-child(2n) {
  background: var(--teal-light);
  box-shadow: 0 0 8px var(--teal-light);
  animation-delay: 0.4s;
}

.slot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.slot-reel {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-sm);
  width: 100px;
  height: 160px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.3);
}

.reel-window-top, .reel-window-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 48px;
  pointer-events: none;
  z-index: 2;
}

.reel-window-top {
  top: 0;
  background: linear-gradient(to bottom, rgba(26,43,43,0.95), transparent);
}

.reel-window-bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(26,43,43,0.95), transparent);
}

.reel-highlight {
  position: absolute;
  left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 64px;
  border-top: 1.5px solid rgba(212,175,55,0.5);
  border-bottom: 1.5px solid rgba(212,175,55,0.5);
  pointer-events: none;
  z-index: 3;
}

.reel-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: absolute;
  width: 100%;
  transition: transform 0.1s linear;
}

.reel-symbol {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  user-select: none;
}

/* Win animation */
.reel-symbol.win-flash {
  animation: win-flash 0.5s ease-in-out infinite alternate;
}

/* Controls */
.slot-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bet-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 4px 4px 4px 16px;
}

.bet-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}

.bet-value {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal-dark);
  min-width: 40px;
  text-align: center;
}

.btn-bet-adj {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--teal);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-bet-adj:hover {
  background: var(--teal-dark);
  transform: scale(1.1);
}

.btn-spin {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-spin:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.btn-spin:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-spin .spin-icon {
  display: inline-block;
  font-size: 1.2rem;
}

.btn-spin.spinning .spin-icon {
  animation: spin 0.5s linear infinite;
}

.win-message {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 16px;
  display: none;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.win-message.show { display: block; }

.win-message.win {
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.2));
  border: 1.5px solid rgba(212,175,55,0.5);
  color: var(--gold-dark);
}

.win-message.lose {
  background: rgba(0,0,0,0.04);
  border: 1.5px solid rgba(0,0,0,0.08);
  color: var(--mid-gray);
}

.win-message.jackpot {
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(245,215,110,0.3));
  border: 2px solid var(--gold);
  color: #8B6914;
  font-size: 1.3rem;
  animation: jackpot-pulse 0.6s ease-in-out infinite alternate;
}

/* Paytable */
.paytable {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 24px;
}

.paytable h4 {
  color: var(--dark);
  margin-bottom: 14px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.paytable-rows {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.paytable-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.paytable-symbols { font-size: 1rem; letter-spacing: -2px; }
.paytable-mult { color: var(--teal-dark); margin-left: auto; font-weight: 800; }

/* =============================================
   CARD GAME
   ============================================= */

.card-game {
  padding: 32px 28px;
}

.card-game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.dealer-section, .player-section {
  width: 100%;
  max-width: 500px;
}

.section-label-game {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
  text-align: center;
}

.card-display {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.playing-card {
  width: 80px;
  height: 116px;
  background: white;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  user-select: none;
}

.playing-card .card-rank {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.playing-card .card-suit {
  font-size: 1.6rem;
  line-height: 1;
}

.playing-card.red { color: #E53935; }
.playing-card.black { color: #1A2B2B; }

.playing-card.face-down {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--dark) 100%);
  border-color: rgba(212,175,55,0.4);
  cursor: default;
  overflow: hidden;
}

.playing-card.face-down::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 6px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 2px,
    transparent 2px,
    transparent 8px
  );
}

.card-value-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.card-value-label small {
  display: block;
  font-size: 0.75rem;
  color: var(--mid-gray);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.hilo-choices {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.btn-higher {
  background: linear-gradient(135deg, #2E7D32, #43A047);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.btn-higher:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46,125,50,0.4);
}

.btn-lower {
  background: linear-gradient(135deg, #C62828, #E53935);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(198,40,40,0.3);
}

.btn-lower:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198,40,40,0.4);
}

.btn-higher:disabled, .btn-lower:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-deal-new {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-deal-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,137,123,0.4);
}

.game-result-banner {
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  width: 100%;
  display: none;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.game-result-banner.show { display: block; }
.game-result-banner.win {
  background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(67,160,71,0.15));
  border: 2px solid rgba(46,125,50,0.4);
  color: #2E7D32;
}
.game-result-banner.lose {
  background: linear-gradient(135deg, rgba(198,40,40,0.08), rgba(229,57,53,0.12));
  border: 2px solid rgba(198,40,40,0.3);
  color: #C62828;
}
.game-result-banner.push {
  background: rgba(0,0,0,0.04);
  border: 2px solid rgba(0,0,0,0.1);
  color: var(--text-mid);
}

/* Streak counter */
.streak-display {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-dark);
  background: rgba(0,137,123,0.08);
  border: 1px solid rgba(0,137,123,0.2);
  border-radius: 50px;
  padding: 6px 16px;
}

/* =============================================
   RESPONSIBLE GAMING PAGE
   ============================================= */

.rg-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}

.rg-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rg-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,137,123,0.1), rgba(0,188,212,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.rg-icon-title h3 {
  color: var(--dark);
}

.rg-section p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.rg-item {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.rg-item .emoji { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.rg-item p { font-size: 0.85rem; margin: 0; }

.helpline-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.helpline-card {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--teal);
}

.helpline-card h4 {
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 1rem;
}

.helpline-card .phone {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal-dark);
  display: block;
  margin: 8px 0;
}

.helpline-card p {
  font-size: 0.82rem;
  margin: 0;
}

.helpline-card a {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.self-check-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.self-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--light-gray);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.self-check-list li::before {
  content: '⚠️';
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,175,55,0.12);
}

.contact-form-card h3 {
  color: var(--dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(0,137,123,0.08);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(0,137,123,0.08), rgba(0,188,212,0.1));
  border: 2px solid rgba(0,137,123,0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 600;
  margin-top: 16px;
  animation: popIn 0.4s ease;
}

.form-success.show { display: block; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,137,123,0.1), rgba(0,188,212,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  color: var(--dark);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
}

.contact-item-text a {
  color: var(--teal-dark);
  font-weight: 600;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  border: 2px solid var(--light-gray);
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
}

/* =============================================
   TERMS PAGE
   ============================================= */

.terms-content {
  max-width: 860px;
  margin: 0 auto;
}

.terms-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.terms-section h3 {
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-section p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.terms-section ul {
  padding-left: 20px;
  margin: 12px 0;
}

.terms-section li {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-highlight {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.15));
  border: 1.5px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}

.terms-highlight p {
  margin: 0;
  font-size: 0.92rem;
  color: #7a5c00;
  font-weight: 500;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.about-visual {
  position: relative;
}

.about-logo-showcase {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(0,188,212,0.05) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  border: 2px solid rgba(212,175,55,0.15);
}

.about-logo-showcase img {
  width: 80%;
  max-width: 280px;
  height: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
.value-card h4 { color: var(--dark); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; }

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.3); }
  50% { box-shadow: 0 4px 35px rgba(212,175,55,0.6); }
}

@keyframes casino-lights {
  from { opacity: 0.4; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes win-flash {
  from { background: rgba(212,175,55,0); }
  to { background: rgba(212,175,55,0.15); }
}

@keyframes jackpot-pulse {
  from { transform: scale(1); }
  to { transform: scale(1.02); }
}

@keyframes slide-reel {
  from { transform: translateY(0); }
  to { transform: translateY(-300%); }
}

@keyframes card-flip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(90deg); }
  100% { transform: rotateY(0deg); }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fade-up 0.6s ease forwards;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-center { text-align: center; }
.text-teal { color: var(--teal-dark); }
.text-gold { color: var(--gold-dark); }
.text-white { color: white; }
.text-muted { color: var(--mid-gray); }

.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }

.18-only-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  color: #7a5c00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--light-gray);
    z-index: 999;
    gap: 4px;
  }
  .main-nav.open .nav-link { width: 100%; border-radius: 10px; padding: 12px 16px; }
  .menu-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .slot-reel { width: 80px; height: 140px; }
  .reel-symbol { height: 56px; font-size: 1.8rem; }
  .reel-highlight { height: 56px; }
  .slot-controls { flex-direction: column; align-items: center; }
  .age-gate-card { padding: 32px 24px; }
  section { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .slot-reels { gap: 8px; }
  .slot-reel { width: 68px; }
  .reel-symbol { font-size: 1.5rem; }
  .hilo-choices { flex-direction: column; align-items: center; }
  .btn-higher, .btn-lower { width: 100%; justify-content: center; }
  .age-buttons { flex-direction: column; }
  .btn-enter, .btn-decline { width: 100%; }
}
