/* ═══════════════════════════════════════════
   BABU88 — Main Stylesheet
   ═══════════════════════════════════════════ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --gold-dim:    #7A5F24;
  --bg-deep:     #080608;
  --bg-card:     #110E14;
  --bg-glass:    rgba(201,168,76,0.06);
  --text:        #EDE8E0;
  --text-muted:  #7E7670;
  --accent-red:  #C0392B;
  --radius:      14px;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: linear-gradient(to bottom, rgba(8,6,8,0.95), transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta { display: flex; gap: 0.75rem; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
}

.btn-outline {
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  color: var(--gold-light);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #A07830 100%);
  color: #1a1208;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 65vw; height: 65vw;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 680px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--gold-dim);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 8px #4CAF50;
  animation: pulse 1.6s infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-hero { padding: 0.85rem 2.2rem; font-size: 1rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero-cards {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
  animation: slideIn 0.9s 0.4s ease both;
}

@keyframes slideIn { from{opacity:0;transform:translateY(-50%) translateX(60px)} to{opacity:1;transform:translateY(-50%) translateX(0)} }
@keyframes fadeUp  { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 260px;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  border-color: var(--gold-dim);
  transform: translateX(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.game-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.game-name { font-weight: 600; font-size: 0.9rem; }
.game-meta { font-size: 0.75rem; color: var(--text-muted); }

.badge-live {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 0.4rem;
}

/* ══ SECTION COMMONS ══ */
section { position: relative; z-index: 1; padding: 70px 5vw; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ══ CATEGORIES ══ */
.categories {
  background: var(--bg-card);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.cat-item {
  background: var(--bg-glass);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.cat-item:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.cat-emoji { font-size: 1.6rem; display: block; margin-bottom: 0.4rem; }
.cat-name  { font-weight: 600; font-size: 0.875rem; }
.cat-count { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; }

.cat-cta {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

/* ══ PROMOTIONS ══ */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.promo-card {
  border-radius: 18px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.18);
  cursor: pointer;
  transition: transform var(--transition);
}
.promo-card:hover { transform: translateY(-5px); }

.promo-card.main {
  grid-row: span 2;
  background: linear-gradient(145deg, #1a1208, #0d0c06);
}
.promo-card.main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.25) 0%, transparent 60%);
}

.promo-card.secondary { background: linear-gradient(145deg, #120814, #0a0610); }
.promo-card.secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(140,60,200,0.18) 0%, transparent 60%);
}

.promo-tag {
  display: inline-block;
  background: var(--gold);
  color: #1a1208;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.promo-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.promo-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.promo-text  { font-size: 0.85rem; color: var(--text-muted); max-width: 340px; }
.promo-cta   { margin-top: 1.75rem; position: relative; z-index: 1; }

/* ══ PAYMENTS ══ */
.payments { background: var(--bg-card); }

.payments-grid { display: flex; flex-wrap: wrap; gap: 1rem; }

.pay-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}
.pay-chip:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ══ FEATURES ══ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.feat-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 40px rgba(201,168,76,0.06);
}

.feat-icon { font-size: 1.8rem; margin-bottom: 1rem; }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feat-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ══ FAQ ══ */
.faq { background: var(--bg-card); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; }

.faq-item {
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-glass); }
.faq-q.open  { background: var(--bg-glass); color: var(--gold-light); }

.faq-chevron {
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.faq-q.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0 1.5rem;
}
.faq-a.open { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ══ SEO TEXT BLOCK ══ */
.seo-text {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 60px 5vw;
}
.seo-inner { max-width: 860px; }
.seo-inner h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.seo-inner p  { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.85; }

/* ══ FOOTER ══ */
footer {
  background: #050305;
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 60px 5vw 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a  { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.responsible {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.age-badge {
  background: var(--accent-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 5px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-cards { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card.main { grid-row: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; }
}
