/* ========================================
   LotusPlayClub – Main Stylesheet
   Social Casino India | 18+ Only
======================================== */

:root {
  --purple-dark: #0d001f;
  --purple-deep: #1a0533;
  --purple-mid: #2D1B69;
  --purple-light: #6B21A8;
  --purple-glow: #9333EA;
  --gold-primary: #FFD700;
  --gold-dark: #B8860B;
  --gold-light: #FFF8DC;
  --white: #FFFFFF;
  --text-light: #E9D5FF;
  --text-muted: #A78BCC;
  --green-win: #22C55E;
  --red-lose: #EF4444;
  --card-bg: rgba(45, 27, 105, 0.6);
  --border-gold: rgba(255, 215, 0, 0.3);
  --border-purple: rgba(147, 51, 234, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-purple: 0 0 30px rgba(107, 33, 168, 0.5);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--purple-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: var(--gold-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 3px; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.gold-text { color: var(--gold-primary); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
  color: var(--purple-dark);
}
.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary-hero:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ===== AGE GATE ===== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(10px);
}
.age-gate-overlay.hidden { display: none; }
.age-gate-box {
  background: linear-gradient(145deg, #1a0533, #0d001f);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.2), var(--shadow-purple);
  animation: gateAppear 0.5s ease;
}
@keyframes gateAppear {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.age-gate-logo img { height: 70px; margin-bottom: 1rem; }
.age-gate-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  font-size: 1.8rem;
  font-weight: 900;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  line-height: 72px;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-gold);
}
.age-gate-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.age-gate-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.age-gate-question {
  color: var(--gold-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.age-gate-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.btn-yes {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}
.btn-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6); }
.btn-no {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid rgba(255,255,255,0.2);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-no:hover { border-color: var(--red-lose); color: var(--red-lose); }
.age-gate-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--border-purple);
  padding-top: 1rem;
}
.age-gate-disclaimer a { color: var(--gold-primary); }
.age-gate-disclaimer i { margin-right: 0.3rem; }

/* ===== NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(13, 0, 31, 0.98), rgba(13, 0, 31, 0.9));
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(255, 215, 0, 0.15);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo img { height: 50px; transition: var(--transition); }
.nav-logo:hover img { filter: drop-shadow(0 0 10px rgba(255,215,0,0.6)); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links li a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
}
.nav-badge-18 {
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(107, 33, 168, 0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              linear-gradient(160deg, #0d001f 0%, #1a0533 40%, #0a0015 100%);
  padding: 7rem 1.5rem 4rem;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge-top {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title .gold-text {
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00, var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-subtitle strong { color: var(--gold-primary); }
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-primary);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-gold); }
/* Floating cards visual */
.hero-cards-visual { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floating-card {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.12;
  animation: floatCard ease-in-out infinite alternate;
}
.card-1 { top: 15%; left: 5%; animation-duration: 6s; animation-delay: 0s; }
.card-2 { top: 20%; right: 8%; animation-duration: 8s; animation-delay: 1s; font-size: 2rem; }
.card-3 { bottom: 25%; left: 3%; animation-duration: 7s; animation-delay: 2s; }
.card-4 { bottom: 20%; right: 5%; animation-duration: 9s; animation-delay: 0.5s; font-size: 2rem; }
.floating-chip { position: absolute; font-size: 2rem; opacity: 0.15; animation: floatCard ease-in-out infinite alternate; }
.chip-1 { top: 50%; left: 8%; animation-duration: 10s; animation-delay: 1.5s; }
.chip-2 { top: 40%; right: 6%; animation-duration: 7s; animation-delay: 3s; }
@keyframes floatCard {
  from { transform: translateY(0px) rotate(-5deg); }
  to { transform: translateY(-20px) rotate(5deg); }
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 2s both;
}
.scroll-arrow {
  animation: bounceDown 1.5s ease infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== NOTICE BANNER ===== */
.notice-banner {
  background: linear-gradient(135deg, rgba(255, 165, 0, 0.08), rgba(255, 215, 0, 0.05));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 0;
}
.notice-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.notice-icon { color: var(--gold-primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.notice-inner p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.notice-inner strong { color: var(--gold-primary); }

/* ===== GAMES SECTION ===== */
.games-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--purple-dark) 0%, rgba(26, 5, 51, 0.8) 100%);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}
.game-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  position: relative;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2), var(--shadow-purple);
}
.game-preview-wrap { position: relative; overflow: hidden; }
.game-preview-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.game-card:hover .game-preview-img { transform: scale(1.05); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 0, 31, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.game-card:hover .game-overlay { opacity: 1; }
.btn-play-game {
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  transform: scale(0.9);
  box-shadow: var(--shadow-gold);
}
.game-card:hover .btn-play-game { transform: scale(1); }
.game-badge-free {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--green-win), #16A34A);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 2px;
}
.game-card-body { padding: 1.5rem; }
.game-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.game-title i { font-size: 0.9rem; }
.game-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.game-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.tag {
  background: rgba(107, 33, 168, 0.3);
  border: 1px solid var(--border-purple);
  color: var(--text-light);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.tag i { color: var(--gold-primary); font-size: 0.7rem; }
.btn-game-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-glow));
  color: var(--white);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid var(--border-purple);
}
.btn-game-play:hover {
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  border-color: var(--gold-primary);
}
.games-disclaimer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.games-disclaimer i { color: var(--gold-primary); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(26, 5, 51, 0.8) 0%, var(--purple-dark) 100%);
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 240px;
  flex: 1;
  min-width: 200px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-glow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--gold-primary);
}
.step-number {
  position: absolute;
  top: -12px;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.step-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.step-arrow {
  color: var(--gold-primary);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ===== RESPONSIBLE GAMING HIGHLIGHT ===== */
.responsible-highlight {
  padding: 5rem 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(107, 33, 168, 0.2) 0%, transparent 70%),
              var(--purple-dark);
}
.rg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rg-content .section-title { text-align: left; }
.rg-content p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.rg-content strong { color: var(--gold-primary); }
.rg-list { margin-bottom: 2rem; }
.rg-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
}
.rg-list li i { color: var(--green-win); font-size: 0.9rem; }
.rg-visual { text-align: center; }
.rg-shield {
  position: relative;
  margin-bottom: 2rem;
}
.shield-icon {
  font-size: 6rem;
  color: var(--purple-light);
  filter: drop-shadow(0 0 20px rgba(107, 33, 168, 0.5));
}
.shield-labels {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.shield-labels span {
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  animation: pulse 2s ease infinite alternate;
}
.shield-labels span:nth-child(2) { animation-delay: 0.5s; }
.shield-labels span:nth-child(3) { animation-delay: 1s; }
.shield-labels span:nth-child(4) { animation-delay: 1.5s; }
@keyframes pulse {
  from { opacity: 0.7; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}
.rg-orgs-title { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.org-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.org-badge {
  background: rgba(45, 27, 105, 0.6);
  border: 1px solid var(--border-purple);
  color: var(--text-light);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.org-badge i { color: var(--gold-primary); }

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--purple-dark) 0%, rgba(26, 5, 51, 0.5) 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-glow));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
}
.feature-card h3 { color: var(--white); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 5rem 0; background: var(--purple-dark); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-gold); }
.faq-question {
  width: 100%;
  background: var(--card-bg);
  border: none;
  color: var(--white);
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-primary); }
.faq-question i { color: var(--gold-primary); transition: var(--transition); flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-answer strong { color: var(--gold-primary); }

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 4rem 0;
  background: radial-gradient(ellipse at center, rgba(107, 33, 168, 0.3), transparent 70%);
}
.cta-inner {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-inner p { color: var(--text-muted); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #0a001a, #050010);
  border-top: 1px solid var(--border-gold);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand-text { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-age-badge {
  display: inline-block;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}
.footer-links h4 {
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links ul li a:hover { color: var(--gold-primary); padding-left: 4px; }
.footer-contact h4 {
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-contact p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact p a { color: var(--text-muted); }
.footer-contact p a:hover { color: var(--gold-primary); }
.footer-contact p i { color: var(--gold-primary); font-size: 0.85rem; }
.footer-regulators { margin-top: 1.5rem; }
.footer-regulators h4 {
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.regulator-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.reg-badge {
  background: rgba(45, 27, 105, 0.5);
  border: 1px solid var(--border-purple);
  color: var(--text-muted);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}
.reg-badge:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.reg-badge i { color: var(--gold-primary); }
.footer-bottom {
  border-top: 1px solid var(--border-purple);
  padding: 1.5rem 0;
}
.footer-disclaimer {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-disclaimer strong { color: var(--white); }
.footer-disclaimer a { color: var(--gold-primary); }
.footer-copy {
  text-align: center;
}
.footer-copy p { color: var(--text-muted); font-size: 0.78rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  border-bottom: 1px solid var(--border-gold);
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 215, 0, 0.05), transparent 60%);
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  position: relative;
}
.page-header h1 span { color: var(--gold-primary); }
.page-header p { color: var(--text-muted); margin-top: 0.5rem; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  position: relative;
}
.breadcrumb a { color: var(--gold-primary); }
.breadcrumb span { opacity: 0.5; }

/* ===== GAME PAGES ===== */
.game-area { padding: 3rem 0 5rem; }
.game-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.game-top-bar {
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(107,33,168,0.2));
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.game-top-bar h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
  font-size: 1.3rem;
}
.balance-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}
.balance-label { color: var(--text-muted); font-size: 0.8rem; }
.balance-amount {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}
.balance-icon { color: var(--gold-primary); }
.game-body { padding: 2rem; }

/* ===== SLOT MACHINE ===== */
.slot-machine {
  text-align: center;
}
.slot-reels {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto;
  position: relative;
}
.slot-reel {
  width: 110px;
  height: 130px;
  background: linear-gradient(180deg, #0a0018, #1a0533);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.reel-inner {
  position: absolute;
  width: 100%;
  transition: transform 0.1s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reel-symbol {
  width: 110px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  line-height: 1;
}
.reel-highlight {
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  top: 0;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-md);
  pointer-events: none;
  box-shadow: 0 0 15px rgba(255,215,0,0.3);
  z-index: 2;
}
.slot-lines {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--gold-primary);
  opacity: 0.3;
  transform: translateY(-50%);
}
.slot-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.bet-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bet-label { color: var(--text-muted); font-size: 0.85rem; }
.bet-btn {
  background: rgba(107, 33, 168, 0.5);
  border: 1px solid var(--border-purple);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.bet-btn:hover { background: var(--purple-light); border-color: var(--gold-primary); }
.bet-amount {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1rem;
  min-width: 50px;
  text-align: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
}
.btn-spin {
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-spin:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}
.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-spin.spinning {
  animation: spinPulse 0.3s linear infinite;
}
@keyframes spinPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
.slot-result {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.slot-result.win {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--green-win);
  animation: winShake 0.5s ease;
}
.slot-result.lose {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--red-lose);
}
.slot-result.jackpot {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  animation: jackpotPulse 0.5s ease;
}
@keyframes winShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
@keyframes jackpotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.paytable {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}
.paytable h4 {
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.paytable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.4rem;
}
.paytable-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.82rem;
  background: rgba(45, 27, 105, 0.3);
}
.paytable-symbols { font-size: 1rem; }
.paytable-win { color: var(--gold-primary); font-weight: 700; }
.spin-history {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
.history-item {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}
.history-item.win { background: rgba(34,197,94,0.2); color: var(--green-win); }
.history-item.lose { background: rgba(239,68,68,0.1); color: var(--text-muted); }
.history-item.jackpot { background: rgba(255,215,0,0.2); color: var(--gold-primary); }

/* ===== HIGHER OR LOWER GAME ===== */
.card-game { text-align: center; }
.card-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  flex-wrap: wrap;
}
.card-slot {
  position: relative;
}
.card-slot-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.playing-card {
  width: 120px;
  height: 180px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
  transform-style: preserve-3d;
}
.playing-card.flip-in {
  animation: cardFlip 0.4s ease;
}
@keyframes cardFlip {
  0% { transform: rotateY(90deg); }
  100% { transform: rotateY(0deg); }
}
.playing-card.red-card { color: #CC0000; }
.playing-card.black-card { color: #1a1a1a; }
.playing-card.back-card {
  background: linear-gradient(135deg, #1a3a7a, #0d1f4a);
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}
.card-corner-top {
  position: absolute;
  top: 8px;
  left: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.card-center { font-size: 3.5rem; line-height: 1; }
.card-corner-bottom {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: rotate(180deg);
}
.card-back-icon { font-size: 3rem; }
.vs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.vs-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-primary);
  font-weight: 700;
}
.vs-arrow-up, .vs-arrow-down {
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
}
.vs-arrow-up { color: var(--green-win); }
.vs-arrow-down { color: var(--red-lose); }
.card-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.btn-higher {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.4);
}
.btn-higher:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(34,197,94,0.6); }
.btn-lower {
  background: linear-gradient(135deg, #EF4444, #DC2626);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(239,68,68,0.4);
}
.btn-lower:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(239,68,68,0.6); }
.btn-higher:disabled, .btn-lower:disabled { opacity: 0.5; cursor: not-allowed; }
.card-result {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: var(--transition);
  padding: 0 1rem;
}
.card-result.win { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); color: var(--green-win); }
.card-result.lose { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: var(--red-lose); }
.streak-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.streak-fire {
  font-size: 1.2rem;
  animation: flamePulse 0.8s ease infinite alternate;
}
@keyframes flamePulse { from { transform: scale(1); } to { transform: scale(1.2); } }
.streak-count {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
}
.streak-label { color: var(--text-muted); font-size: 0.85rem; }
.btn-deal-new {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-deal-new:hover { background: rgba(255,215,0,0.1); }
.score-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1.5rem;
}
.score-item { text-align: center; }
.score-value {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
}
.score-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== RESPONSIBLE GAMING PAGE ===== */
.rg-page { padding: 4rem 0; }
.rg-section {
  background: var(--card-bg);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.rg-section:hover { border-color: var(--border-gold); }
.rg-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
}
.rg-section h2 i { font-size: 1.2rem; }
.rg-section p { color: var(--text-muted); line-height: 1.7; margin-bottom: 0.75rem; }
.rg-section ul { color: var(--text-muted); }
.rg-section ul li {
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.rg-section ul li i { color: var(--green-win); margin-top: 3px; flex-shrink: 0; }
.rg-section strong { color: var(--gold-primary); }
.helpline-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.helpline-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
}
.helpline-card:hover { border-color: var(--gold-primary); }
.helpline-card i { font-size: 1.5rem; color: var(--gold-primary); margin-bottom: 0.5rem; }
.helpline-card h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.helpline-card p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }
.helpline-card a { color: var(--gold-primary); }
.limit-tool {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
}
.limit-tool h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.limit-form { display: flex; gap: 1rem; flex-wrap: wrap; align-items: flex-end; }
.limit-field { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; min-width: 180px; }
.limit-field label { color: var(--text-muted); font-size: 0.82rem; }
.limit-field select, .limit-field input {
  background: rgba(45, 27, 105, 0.4);
  border: 1px solid var(--border-purple);
  color: var(--white);
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}
.limit-field select:focus, .limit-field input:focus { border-color: var(--gold-primary); }
.btn-set-limit {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-glow));
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-set-limit:hover { background: linear-gradient(135deg, var(--gold-primary), #FF8C00); color: var(--purple-dark); }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 4rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--gold-primary); }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-glow));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-item-text p, .contact-item-text a { color: var(--text-muted); font-size: 0.87rem; }
.contact-item-text a:hover { color: var(--gold-primary); }
.contact-map {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  margin-top: 1.5rem;
}
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { color: var(--text-muted); font-size: 0.85rem; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-purple);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(45,27,105,0.3);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary), #FF8C00);
  color: var(--purple-dark);
  border: none;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.form-success {
  display: none;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  color: var(--green-win);
  margin-top: 1rem;
}

/* ===== TERMS PAGE ===== */
.terms-page { padding: 4rem 0; }
.terms-toc {
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.terms-toc h3 { color: var(--gold-primary); font-size: 1rem; margin-bottom: 0.75rem; }
.terms-toc ul { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.terms-toc ul li a {
  background: rgba(107, 33, 168, 0.3);
  border: 1px solid var(--border-purple);
  color: var(--text-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  display: block;
  transition: var(--transition);
}
.terms-toc ul li a:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.terms-section {
  background: var(--card-bg);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.terms-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-purple);
}
.terms-section p { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; font-size: 0.9rem; }
.terms-section ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.terms-section ul li::before { content: '•'; color: var(--gold-primary); position: absolute; left: 0; }
.terms-section strong { color: var(--white); }
.terms-section a { color: var(--gold-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 0, 26, 0.98);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.75rem 1rem; border-radius: var(--radius-md); }
  .nav-toggle { display: block; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-stage { gap: 1rem; }
  .playing-card { width: 100px; height: 155px; }
  .card-center { font-size: 3rem; }
  .score-board { grid-template-columns: repeat(2, 1fr); }
  .slot-reels { gap: 0.5rem; }
  .slot-reel { width: 90px; height: 110px; }
  .reel-symbol { width: 90px; height: 110px; font-size: 2.8rem; }
  .card-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .age-gate-buttons { flex-direction: column; }
  .btn-yes, .btn-no { justify-content: center; }
  .game-top-bar { flex-direction: column; }
  .slot-reel { width: 80px; }
  .reel-symbol { width: 80px; font-size: 2.4rem; }
  .paytable-grid { grid-template-columns: 1fr 1fr; }
}
