/* ═══════════════════════════════════════════════════════════
   cirifromcintra.pro
   Aesthetic: Cosmic Midnight Lotus
   Palette: Midnight navy · Emerald green · Champagne gold · Ivory
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --em:      #00C896;
  --em2:     #00F0B5;
  --gold:    #D4A843;
  --gold2:   #F0CC6E;
  --navy:    #05080F;
  --ink:     #080D18;
  --card:    #0D1526;
  --card2:   #111D33;
  --border:  rgba(0,200,150,0.14);
  --borderG: rgba(212,168,67,0.14);
  --text:    #EDF2EC;
  --muted:   #6B7A8D;
  --red:     #FF5C6B;
  --green:   #00E096;
  --ivory:   #F5F0E8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── STARFIELD ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 45%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 55%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 90%, rgba(255,255,255,0.18) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.22) 0%, transparent 100%),
    radial-gradient(2px 2px at 85% 10%, rgba(0,200,150,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 15% 50%, rgba(212,168,67,0.2) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}

/* ── AMBIENT GLOW ── */
.glow-orb {
  position: fixed; border-radius: 50%;
  filter: blur(140px); pointer-events: none; z-index: 0;
}
.glow-1 { width: 700px; height: 700px; background: rgba(0,200,150,0.07); top: -200px; left: -200px; }
.glow-2 { width: 600px; height: 600px; background: rgba(212,168,67,0.06); bottom: -150px; right: -150px; }
.glow-3 { width: 400px; height: 400px; background: rgba(0,80,160,0.08); top: 40%; left: 40%; transform: translate(-50%,-50%); }

/* ══════════════════════════════════════
   AGE GATE
══════════════════════════════════════ */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(5,8,15,0.97);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(16px);
}
.ag-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px 44px;
  max-width: 460px; width: 92%;
  text-align: center;
  position: relative; overflow: hidden;
}
.ag-wrap::before {
  content: '';
  position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,200,150,0.06), rgba(212,168,67,0.04));
}
.ag-wrap::after {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--em), var(--gold), var(--em), transparent);
}
.ag-lotus {
  font-size: 52px; margin-bottom: 16px;
  animation: lotusPulse 3s ease-in-out infinite;
  display: block; position: relative; z-index: 1;
}
@keyframes lotusPulse {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(0,200,150,0.4)); }
  50%      { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(0,200,150,0.7)); }
}
.ag-wrap h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--em2), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  position: relative; z-index: 1;
}
.ag-wrap p {
  color: var(--muted); font-size: 13.5px; line-height: 1.7;
  margin-bottom: 30px; position: relative; z-index: 1;
}
.ag-btns { display: flex; gap: 12px; position: relative; z-index: 1; }
.ag-yes, .ag-no {
  flex: 1; padding: 14px; border-radius: 12px; border: none;
  font-family: 'Nunito Sans', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .22s;
}
.ag-yes {
  background: linear-gradient(135deg, var(--em), var(--em2));
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(0,200,150,0.3);
}
.ag-yes:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,200,150,0.45); }
.ag-no { background: transparent; border: 1px solid var(--border); color: var(--text); }
.ag-no:hover { border-color: var(--em); }
.ag-note { margin-top: 20px; font-size: 11px; color: var(--muted); line-height: 1.6; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   RG BANNER
══════════════════════════════════════ */
#rg-bar {
  background: linear-gradient(90deg, #060208, #040812, #060208);
  border-bottom: 1px solid rgba(255,92,107,0.25);
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 12.5px; color: #ffb0b8;
  text-align: center; flex-wrap: wrap;
  position: sticky; top: 0; z-index: 500;
}
#rg-bar strong { color: var(--red); }
#rg-bar a { color: #ffb0b8; text-decoration: underline; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 10;
  background: rgba(5,8,15,0.6);
  backdrop-filter: blur(12px);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-gem {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--em), var(--em2));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px rgba(0,200,150,0.4);
}
.logo-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 18px; font-weight: 700;
  background: linear-gradient(135deg, var(--em2), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: .5px;
}
.logo-tld { -webkit-text-fill-color: var(--muted); font-size: 13px; }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--muted); text-decoration: none;
  font-size: 13.5px; font-weight: 600;
  padding: 8px 18px; border-radius: 10px;
  transition: all .2s;
}
nav a:hover, nav a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta {
  background: linear-gradient(135deg, var(--em), var(--em2));
  color: var(--navy) !important; font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(0,200,150,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,200,150,0.45);
}
.hamburger {
  display: none; background: none;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 8px 10px; cursor: pointer; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--ink); position: relative; z-index: 9;
}
.mobile-nav a {
  color: var(--muted); text-decoration: none;
  font-size: 15px; font-weight: 600; padding: 10px 14px;
  border-radius: 10px; transition: all .2s;
}
.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-nav.open { display: flex; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden; z-index: 1;
}
/* Lotus ring decoration */
.hero-ring {
  position: absolute;
  border-radius: 50%; border: 1px solid rgba(0,200,150,0.06);
  pointer-events: none;
  animation: ringRotate linear infinite;
}
.hero-ring:nth-child(1) { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 80s; }
.hero-ring:nth-child(2) { width: 700px; height: 700px; top: 50%; left: 50%; transform: translate(-50%,-50%); border-color: rgba(212,168,67,0.04); animation-duration: 120s; animation-direction: reverse; }
.hero-ring:nth-child(3) { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 180s; }
@keyframes ringRotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
/* Floating petals */
.petal {
  position: absolute; pointer-events: none;
  font-size: 20px; opacity: .12;
  animation: petalFloat linear infinite;
}
@keyframes petalFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  5%   { opacity: .12; }
  95%  { opacity: .08; }
  100% { transform: translateY(-120px) rotate(540deg); opacity: 0; }
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,150,0.08);
  border: 1px solid rgba(0,200,150,0.22);
  border-radius: 40px; padding: 7px 22px;
  font-size: 12px; color: var(--em2);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp .7s ease both;
}
.hero-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: pulseAnim 1.6s ease-in-out infinite;
}
@keyframes pulseAnim { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(36px, 7vw, 88px);
  line-height: 1.0; margin-bottom: 28px;
  animation: fadeUp .7s ease .12s both;
}
.hero h1 .l1 { display: block; color: var(--ivory); letter-spacing: .5px; }
.hero h1 .l2 {
  display: block;
  background: linear-gradient(135deg, var(--em), var(--gold2), var(--em2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px); color: var(--muted);
  max-width: 580px; margin: 0 auto 44px; line-height: 1.75;
  animation: fadeUp .7s ease .22s both;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s ease .32s both;
}
.btn-em {
  background: linear-gradient(135deg, var(--em), var(--em2));
  color: var(--navy); border: none;
  padding: 17px 44px; border-radius: 14px;
  font-family: 'Nunito Sans', sans-serif; font-size: 16px; font-weight: 800;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 28px rgba(0,200,150,0.32);
  letter-spacing: .3px;
}
.btn-em:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,200,150,0.48); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--borderG);
  padding: 17px 44px; border-radius: 14px;
  font-family: 'Nunito Sans', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold2); }
.hero-fine {
  margin-top: 28px; font-size: 12px; color: var(--muted);
  animation: fadeUp .7s ease .44s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(0,200,150,0.03); padding: 11px 0;
}
.ticker-inner {
  display: flex; animation: tickScroll 32s linear infinite;
  width: max-content;
}
.tick { white-space: nowrap; font-size: 13px; color: var(--muted); padding: 0 32px; }
.tick em { color: var(--em2); font-style: normal; margin-right: 8px; font-size: 10px; }
@keyframes tickScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
}
.stat {
  flex: 1; max-width: 220px;
  padding: 30px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 34px; font-weight: 700;
  background: linear-gradient(135deg, var(--em2), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 5px; letter-spacing: .5px; }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.sec { padding: 96px 56px; max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.dark-sec { background: var(--ink); }
.wrap { padding: 96px 0; position: relative; z-index: 1; }

.stag { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--em2); margin-bottom: 14px; }
.sh2 { font-family: 'Cinzel Decorative', serif; font-size: clamp(24px, 3.5vw, 42px); line-height: 1.15; margin-bottom: 16px; }
.ssub { color: var(--muted); font-size: 15px; line-height: 1.75; max-width: 560px; }

/* ══════════════════════════════════════
   GAME CARDS
══════════════════════════════════════ */
.grid-games {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 20px; margin-top: 48px;
}
.gc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; cursor: pointer;
  transition: all .28s; position: relative;
}
.gc::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,200,150,0.07), transparent);
  opacity: 0; transition: opacity .28s; pointer-events: none;
}
.gc:hover { transform: translateY(-8px); border-color: rgba(0,200,150,0.35); box-shadow: 0 24px 56px rgba(0,0,0,0.55); }
.gc:hover::after { opacity: 1; }
.gt { height: 144px; display: flex; align-items: center; justify-content: center; font-size: 58px; position: relative; }
.gt::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--card)); }
.gb { padding: 18px 20px 22px; }
.gn { font-family: 'Cinzel Decorative', serif; font-size: 15px; margin-bottom: 6px; line-height: 1.3; }
.gd { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.gf { display: flex; align-items: center; justify-content: space-between; }
.gbadge {
  font-size: 10px; font-weight: 700; padding: 3px 11px; border-radius: 20px;
  background: rgba(0,224,150,0.1); color: var(--green);
  border: 1px solid rgba(0,224,150,0.22); letter-spacing: .5px;
}
.gplay {
  background: linear-gradient(135deg, var(--em), var(--em2));
  border: none; color: var(--navy);
  font-family: 'Nunito Sans', sans-serif; font-size: 13px; font-weight: 800;
  padding: 7px 18px; border-radius: 9px; cursor: pointer; transition: opacity .2s;
}
.gplay:hover { opacity: .85; }
.gt1 { background: linear-gradient(135deg,#060d20,#0a1530); }
.gt2 { background: linear-gradient(135deg,#08160a,#0a2010); }
.gt3 { background: linear-gradient(135deg,#160a06,#201208); }
.gt4 { background: linear-gradient(135deg,#06100d,#081a15); }
.gt5 { background: linear-gradient(135deg,#14080c,#200a12); }
.gt6 { background: linear-gradient(135deg,#0a0a16,#101028); }

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.grid-feat {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr));
  gap: 22px; margin-top: 48px;
}
.fc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; transition: border-color .2s;
}
.fc:hover { border-color: rgba(0,200,150,0.3); }
.fi {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,200,150,0.08); border: 1px solid rgba(0,200,150,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.ft { font-family: 'Cinzel Decorative', serif; font-size: 14px; margin-bottom: 9px; line-height: 1.35; }
.fd { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   RG SECTION
══════════════════════════════════════ */
.rg-block {
  background: linear-gradient(135deg,#0c0608,#060810);
  border-top: 1px solid rgba(255,92,107,0.18);
  border-bottom: 1px solid rgba(255,92,107,0.18);
  padding: 72px 56px;
  position: relative; z-index: 1;
}
.rg-inner { max-width: 980px; margin: 0 auto; }
.rg-hd { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.rg-orb {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,92,107,0.1); border: 1px solid rgba(255,92,107,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.rg-hd h2 { font-family: 'Cinzel Decorative', serif; font-size: 22px; color: #ffb0b8; }
.rg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.ri {
  background: rgba(255,92,107,0.05); border: 1px solid rgba(255,92,107,0.11);
  border-radius: 12px; padding: 20px;
}
.ri h4 { font-size: 13.5px; font-weight: 700; color: #ffb0b8; margin-bottom: 7px; }
.ri p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.rg-lines { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.rl {
  background: rgba(255,92,107,0.06); border: 1px solid rgba(255,92,107,0.18);
  color: #ffb0b8; text-decoration: none;
  padding: 10px 18px; border-radius: 9px; font-size: 13px; transition: background .2s;
}
.rl:hover { background: rgba(255,92,107,0.14); }

/* ══════════════════════════════════════
   DISCLAIMER
══════════════════════════════════════ */
.disc {
  background: var(--ink); border-top: 1px solid var(--border);
  padding: 40px 56px; position: relative; z-index: 1;
}
.disc-in { max-width: 960px; margin: 0 auto; }
.disc h3 { font-size: 10.5px; letter-spacing: 2.5px; color: var(--muted); text-transform: uppercase; margin-bottom: 11px; }
.disc p { font-size: 11.5px; color: var(--muted); line-height: 1.75; margin-bottom: 8px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 60px 56px 38px; position: relative; z-index: 1; }
.fg {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.fbrand p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-top: 12px; max-width: 250px; }
.fcol h5 { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--em2); margin-bottom: 16px; }
.fcol a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.fcol a:hover { color: var(--text); }
.fb {
  max-width: 1240px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.fb p { font-size: 11.5px; color: var(--muted); }
.age-pill {
  background: rgba(0,200,150,0.09); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 14px; font-size: 12px; color: var(--em2); font-weight: 700;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.phero {
  background: var(--ink); border-bottom: 1px solid var(--border);
  padding: 68px 56px 58px; position: relative; overflow: hidden; z-index: 1;
}
.phero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--em), var(--gold), var(--em2), transparent);
}
.bc { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.bc a { color: var(--muted); text-decoration: none; transition: color .2s; }
.bc a:hover { color: var(--em2); }
.bc .sep { margin: 0 8px; }
.phero h1 { font-family: 'Cinzel Decorative', serif; font-size: clamp(26px, 4.5vw, 48px); margin-bottom: 14px; line-height: 1.2; }
.phero p { color: var(--muted); font-size: 15px; max-width: 620px; line-height: 1.75; }

/* ══════════════════════════════════════
   GAME MODAL
══════════════════════════════════════ */
#gmodal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.93);
  z-index: 8000; display: none;
  align-items: center; justify-content: center;
  padding: 16px; backdrop-filter: blur(12px);
}
#gmodal.open { display: flex; }
.mbox {
  background: var(--ink); border: 1px solid var(--border);
  border-radius: 24px; width: 100%; max-width: 660px;
  max-height: 93vh; overflow-y: auto;
  animation: mboxPop .3s ease;
}
@keyframes mboxPop { from{opacity:0;transform:scale(.92) translateY(18px)} to{opacity:1;transform:scale(1) translateY(0)} }
.mhead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--ink); z-index: 2;
  border-radius: 24px 24px 0 0;
}
.mtitle {
  font-family: 'Cinzel Decorative', serif; font-size: 18px;
  background: linear-gradient(135deg, var(--em2), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.mclose { background: none; border: none; color: var(--muted); font-size: 24px; cursor: pointer; line-height: 1; padding: 2px 6px; transition: color .2s; }
.mclose:hover { color: var(--text); }
.mbody { padding: 24px; }
.mwarn {
  background: rgba(255,92,107,0.06); border: 1px solid rgba(255,92,107,0.16);
  border-radius: 10px; padding: 11px 15px;
  font-size: 11.5px; color: #ffb0b8; margin-bottom: 22px; line-height: 1.5;
}

/* ── Shared game UI ── */
.cbar {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 13px; padding: 13px 20px; margin-bottom: 20px;
}
.clbl { font-size: 12px; color: var(--muted); }
.cval {
  font-family: 'Cinzel Decorative', serif; font-size: 26px;
  background: linear-gradient(135deg, var(--em2), var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.brow { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.blbl { font-size: 12.5px; color: var(--muted); }
.bb {
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); padding: 6px 16px; border-radius: 8px;
  cursor: pointer; font-size: 13px; font-family: 'Nunito Sans', sans-serif;
  transition: all .15s;
}
.bb:hover, .bb.on { border-color: var(--em); color: var(--em2); background: rgba(0,200,150,0.07); }
.big-btn {
  background: linear-gradient(135deg, var(--em), var(--em2));
  color: var(--navy); border: none; padding: 15px 52px;
  border-radius: 13px; font-family: 'Nunito Sans', sans-serif;
  font-size: 18px; font-weight: 800; cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,200,150,0.32);
  transition: all .2s; display: block; margin: 0 auto;
}
.big-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,200,150,0.48); }
.big-btn:disabled { opacity: .4; cursor: not-allowed; }
.gmsg { min-height: 28px; text-align: center; font-size: 15px; font-weight: 700; margin-top: 12px; }
.gmsg.w { color: var(--em2); } .gmsg.l { color: var(--muted); } .gmsg.p { color: var(--gold2); }

/* SLOTS */
.sreels { display: flex; gap: 12px; justify-content: center; margin-bottom: 22px; }
.sr {
  width: 90px; height: 96px; background: var(--card);
  border: 2px solid var(--border); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; transition: border-color .3s;
}
.sr.sp { animation: reelBounce .09s linear infinite; }
@keyframes reelBounce { 0%{transform:translateY(0)}50%{transform:translateY(-5px)}100%{transform:translateY(0)} }
.sr.win { border-color: var(--em2); box-shadow: 0 0 22px rgba(0,240,181,0.4); }
.ptable { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.pr { display: flex; justify-content: space-between; font-size: 12px; padding: 4px 10px; background: var(--card); border-radius: 7px; }
.pr span:last-child { color: var(--gold2); }

/* BLACKJACK */
.bjz { margin-bottom: 14px; text-align: center; }
.bjlbl { font-size: 10.5px; letter-spacing: 1.2px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.crow { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; min-height: 88px; align-items: center; }
.pcard {
  width: 60px; height: 84px; background: #fff; border-radius: 9px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 21px; box-shadow: 0 4px 14px rgba(0,0,0,0.5); color: #111; flex-shrink: 0;
}
.pcard .cs { font-size: 12px; }
.pcard.red { color: #cc1111; }
.pcard.back { background: var(--card); border: 1px solid var(--border); color: var(--muted); font-size: 26px; }
.bjscore { font-size: 12px; color: var(--muted); margin-top: 5px; }
.bjacts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.bjbtn {
  padding: 10px 24px; border-radius: 10px; border: none;
  font-family: 'Nunito Sans', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: opacity .2s;
}
.bjbtn:disabled { opacity: .3; cursor: not-allowed; }
.bjbtn.hit { background: linear-gradient(135deg, var(--em), var(--em2)); color: var(--navy); }
.bjbtn.std { background: var(--card); border: 1px solid var(--border); color: var(--text); }
.bjbtn.deal { background: linear-gradient(135deg, var(--em), var(--em2)); color: var(--navy); }

/* ROULETTE */
.routs { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; margin-bottom: 13px; }
.rob {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; padding: 7px 15px; font-size: 13px;
  cursor: pointer; transition: all .15s; font-weight: 600;
}
.rob:hover, .rob.on { background: rgba(0,200,150,0.09); border-color: var(--em); color: var(--em2); }
.rnums { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; margin-bottom: 13px; }
.rn {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 7px; padding: 7px 0; font-size: 12px;
  cursor: pointer; text-align: center; transition: all .15s;
}
.rn.rnum { color: #ff8888; } .rn.bnum { color: #aaa; }
.rn:hover, .rn.on { background: rgba(0,200,150,0.09); border-color: var(--em); }
.rres { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px; }
.rball { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; }

/* POKER */
.pkres { font-family: 'Cinzel Decorative', serif; font-size: 18px; color: var(--em2); min-height: 28px; margin-bottom: 10px; text-align: center; }
.pkcards { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.pkwrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pkwrap input { accent-color: var(--em); width: 15px; height: 15px; cursor: pointer; }
.hlbl { font-size: 10px; color: var(--em2); min-height: 14px; font-weight: 800; }
.pkpt { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 15px; border-top: 1px solid var(--border); padding-top: 13px; }
.pkr { display: flex; justify-content: space-between; font-size: 11px; padding: 3px 9px; background: var(--card); border-radius: 6px; }
.pkr span:last-child { color: var(--gold2); }

/* BINGO */
.bingo-cell {
  width: 52px; height: 52px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; font-weight: 700;
  transition: all .2s;
}
.bingo-cell.marked { background: rgba(0,200,150,0.18); border-color: var(--em); color: var(--em2); }

/* SCROLL REVEAL */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.rv.vis { opacity: 1; transform: translateY(0); }

/* SCROLL TO TOP */
#stb {
  position: fixed; bottom: 26px; right: 26px;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--em), var(--em2));
  border: none; color: var(--navy); font-size: 18px;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,200,150,0.4); z-index: 100;
}

/* MOBILE */
@media (max-width: 768px) {
  header { padding: 14px 20px; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 64px 20px; min-height: auto; }
  .sec { padding: 64px 20px; }
  .rg-block,.disc,footer { padding: 44px 20px; }
  .fg { grid-template-columns: 1fr 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .sreels { gap: 8px; } .sr { width: 76px; height: 84px; font-size: 36px; }
  .phero { padding: 44px 20px 36px; }
}
@media (max-width: 480px) { .fg { grid-template-columns: 1fr; } }
