/* ============================================================
   SHARED CASINO DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #070509;
  --bg2: #0e090c;
  --bg3: #16101a;
  --border: #2a1a28;
  --gold: #f0b429;
  --gold2: #ffe066;
  --gold-dark: #a87820;
  --gold-shine: #fff3b0;
  --money-green: #1a7a3c;
  --money-green2: #2ea85a;
  --money-green-glow: rgba(30,140,65,.45);
  --crimson: #c0182a;
  --crimson2: #e02035;
  --sky: #4fc3f7;
  --text: #f0e8e0;
  --muted: #9a8a90;
  --red: #e85454;
  --green: #3ecf82;
  --radius: 10px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Segoe UI', system-ui, sans-serif;
}

@keyframes gold-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes money-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(240,180,41,.35), 0 0 0 0 rgba(240,180,41,.0); }
  50%       { box-shadow: 0 4px 28px rgba(240,180,41,.6),  0 0 0 6px rgba(240,180,41,.0); }
}
@keyframes shine-sweep {
  0%   { left: -80%; }
  100% { left: 120%; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 40% at 20% 80%, rgba(26,122,60,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(240,180,41,.05) 0%, transparent 60%);
  color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold2); }

/* ── NAV ── */
nav {
  background: rgba(7,5,9,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240,180,41,.18);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,.6), 0 1px 0 rgba(240,180,41,.08);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 62px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-shine), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gold-shimmer 4s linear infinite;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  filter: drop-shadow(0 0 12px rgba(240,180,41,.4)); letter-spacing: .02em;
  text-decoration: none;
}
.nav-logo span { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: var(--text); background-clip: unset; filter: none; animation: none; }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a { color: var(--muted); padding: 6px 11px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; transition: color .2s, background .2s; white-space: nowrap; letter-spacing: .01em; }
.nav-links a:hover { color: var(--text); background: var(--bg3); }
.nav-links a.active { color: var(--gold); background: rgba(240,180,41,.1); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }
.nav-mobile { display: none; background: var(--bg2); border-top: 1px solid var(--border); }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 13px 20px; color: var(--muted); border-bottom: 1px solid var(--border); font-size: 0.95rem; font-weight: 500; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); background: var(--bg3); }
@media (max-width: 920px) { .nav-links { display: none; } .nav-burger { display: block; } .nav-logo span { display: none; } }
.nav-cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-nav {
  padding: 7px 14px; border-radius: 6px; font-size: 0.82rem; font-weight: 700;
  white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center;
  transition: all .2s; border: none; cursor: pointer; letter-spacing: .03em;
}
.btn-nav:hover { transform: translateY(-1px); }
.btn-nav-reg { background: linear-gradient(135deg, var(--crimson), var(--crimson2)); color: #fff; box-shadow: 0 2px 12px rgba(192,24,42,.4); }
.btn-nav-reg:hover { color: #fff; box-shadow: 0 4px 20px rgba(192,24,42,.6); }
.btn-nav-dl { background: linear-gradient(135deg, #2a9e65, #3ecf82); color: #fff; box-shadow: 0 2px 12px rgba(62,207,130,.35); }
.btn-nav-dl:hover { color: #fff; box-shadow: 0 4px 18px rgba(62,207,130,.55); }
@media (max-width: 400px) { .btn-nav { padding: 6px 10px; font-size: 0.76rem; } }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 8px;
  font-weight: 700; font-size: 0.92rem; transition: transform .15s, box-shadow .2s;
  cursor: pointer; letter-spacing: .04em; text-align: center;
}
.btn-gold {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #b87d10 0%, #e8a820 30%, #ffe066 55%, #f0b429 75%, #a87820 100%);
  color: #1a0e00; box-shadow: 0 4px 20px rgba(240,180,41,.5), inset 0 1px 0 rgba(255,240,150,.4);
  border: 1px solid rgba(255,220,80,.3);
  animation: money-pulse 3s ease-in-out infinite;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: skewX(-15deg);
  animation: shine-sweep 3.5s ease-in-out infinite;
}
.btn-gold:hover { color: #1a0e00; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(240,180,41,.7), inset 0 1px 0 rgba(255,240,150,.5); animation: none; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(240,180,41,.35); color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 18px rgba(240,180,41,.25); transform: translateY(-1px); }
.btn-green {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--money-green), var(--money-green2));
  color: #fff; font-weight: 700; padding: 10px 22px; border-radius: 8px; font-size: 0.88rem;
  transition: transform .15s, box-shadow .15s; display: inline-block;
  box-shadow: 0 3px 18px var(--money-green-glow);
  border: 1px solid rgba(80,200,120,.25);
}
.btn-green:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px var(--money-green-glow); }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── TAGS ── */
.tag { display: inline-block; padding: 2px 9px; border-radius: 4px; font-size: 0.78rem; font-weight: 700; }
.tag-green { background: rgba(62,207,130,.15); color: var(--green); }
.tag-gold  { background: rgba(240,180,41,.15);  color: var(--gold); }
.tag-red   { background: rgba(232,84,84,.15);   color: var(--red); }
.tag-blue  { background: rgba(79,195,247,.12);  color: #4fc3f7; }

/* ── LAYOUT ── */
.section { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }
.section-title {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; margin-bottom: 8px;
  letter-spacing: .03em;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold2), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gold-shimmer 5s linear infinite;
}
.section-subtitle { color: var(--muted); margin-bottom: 32px; }
.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--money-green), var(--gold), var(--gold2));
  border-radius: 2px; margin: 12px 0 24px;
  box-shadow: 0 0 12px rgba(240,180,41,.5), 0 0 6px var(--money-green-glow);
}
.bg-alt { background: var(--bg2); border-top: 1px solid rgba(240,180,41,.1); border-bottom: 1px solid rgba(240,180,41,.1); }
.page-hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(30,122,60,.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(240,180,41,.08), transparent 60%),
    linear-gradient(175deg, #070509 0%, #0d0a12 50%, #070509 100%);
  padding: 60px 20px 50px; border-bottom: 1px solid rgba(240,180,41,.15);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,180,41,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,180,41,.04) 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 4.5vw, 2.7rem); font-weight: 700; margin-bottom: 12px; line-height: 1.15; letter-spacing: .02em; }
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold2), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gold-shimmer 4s linear infinite;
  filter: drop-shadow(0 0 16px rgba(240,180,41,.5));
}
.page-hero p { color: var(--muted); max-width: 580px; font-size: 1rem; margin-bottom: 28px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid rgba(240,180,41,.12); padding: 44px 20px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } .footer-grid > div:last-child { display: none; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:first-child { grid-column: 1 / -1; } }
.footer-brand {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold2));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gold-shimmer 5s linear infinite;
  margin-bottom: 10px; letter-spacing: .04em;
}
.footer-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  border: 1px solid rgba(240,180,41,.25); color: var(--muted);
  background: rgba(240,180,41,.06);
}
.footer-col h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(240,180,41,.6); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.84rem; color: var(--muted); padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(240,180,41,.08); padding-top: 20px;
  display: flex; align-items: flex-start; gap: 16px;
}
.footer-bottom-logo {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  color: rgba(240,180,41,.4); white-space: nowrap; flex-shrink: 0; padding-top: 2px;
}
.footer-disclaimer { font-size: 0.75rem; color: var(--muted); line-height: 1.65; }
.footer-disclaimer strong { color: var(--text); }
