/* ============================================================
   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: #07060a;
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 0 rgba(240,180,41,.04), 0 10px 48px rgba(0,0,0,.85);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none; flex-shrink: 0; margin-right: 20px;
  filter: drop-shadow(0 0 8px rgba(240,180,41,.18));
  transition: filter .25s;
}
.nav-logo:hover { filter: drop-shadow(0 0 18px rgba(240,180,41,.42)); }
.nav-logo span { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: var(--text); background-clip: unset; filter: none; animation: none; }
.nav-logo-img { height: 46px; max-height: 46px; width: auto; max-width: 130px; display: block; flex-shrink: 0; object-fit: contain; mix-blend-mode: screen; transition: transform .3s cubic-bezier(.34,1.56,.64,1), filter .3s; }
.nav-logo:hover .nav-logo-img { transform: scale(1.12) rotate(-4deg); }
@media (max-width: 920px) { .nav-logo-img { height: 38px; max-height: 38px; } }
.nav-links { display: flex; gap: 1px; list-style: none; margin: 0; flex: 1; justify-content: center; }
.nav-links a {
  color: rgba(255,255,255,.35); padding: 7px 14px; border-radius: 7px;
  font-size: 0.82rem; font-weight: 600;
  transition: color .15s, background .15s;
  white-space: nowrap; letter-spacing: .015em;
}
.nav-links a:hover { color: rgba(255,255,255,.78); background: rgba(255,255,255,.05); }
.nav-links a.active {
  color: var(--gold);
  background: rgba(240,180,41,.1);
  border: 1px solid rgba(240,180,41,.24);
}
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.55); margin: 5px 0; border-radius: 2px; transition: background .2s; }
.nav-burger:hover span { background: var(--gold); }
.nav-mobile { display: none; background: #07060a; border-top: 1px solid rgba(255,255,255,.05); }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 13px 24px; color: rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.04); font-size: 0.92rem; font-weight: 500; transition: color .15s, background .15s; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); background: rgba(240,180,41,.04); }
@media (max-width: 920px) { .nav-links { display: none; } .nav-burger { display: block; } .nav-logo span { display: none; } }
.nav-cta {
  display: flex; gap: 9px; align-items: center; flex-shrink: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.07);
  margin-left: 4px;
}
.btn-nav {
  padding: 9px 18px; border-radius: 9px; font-size: 0.8rem; font-weight: 700;
  white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center;
  transition: box-shadow .2s, transform .18s, filter .18s; border: none; cursor: pointer; letter-spacing: .05em;
}
.btn-nav:hover { transform: translateY(-2px); }
.btn-nav-reg {
  background: linear-gradient(150deg, #199048 0%, #25c46a 100%);
  color: #fff; box-shadow: 0 2px 14px rgba(30,192,100,.35);
  border: 1px solid rgba(70,230,130,.2);
}
.btn-nav-reg:hover { color: #fff; box-shadow: 0 5px 26px rgba(30,192,100,.55); filter: brightness(1.06); }
.btn-nav-dl {
  background: linear-gradient(150deg, #c89212 0%, #f8c820 100%);
  color: #120c00; box-shadow: 0 2px 14px rgba(240,180,41,.3);
  border: 1px solid rgba(255,215,60,.22);
  position: relative; overflow: hidden;
}
.btn-nav-dl::after { content: ''; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%); transform: skewX(-20deg); animation: btn-shine 2.8s infinite; }
@keyframes btn-shine { 0% { left: -75%; } 60%, 100% { left: 125%; } }
.btn-nav-dl:hover { color: #120c00; box-shadow: 0 5px 26px rgba(240,180,41,.55); filter: brightness(1.06); }
@media (max-width: 400px) { .btn-nav { padding: 8px 13px; font-size: 0.75rem; } }
@media (max-width: 920px) {
  .nav-cta { border-left: none; padding-left: 0; margin-left: 0; }
  .btn-nav svg { display: none; margin-right: 0 !important; }
}

/* ── 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: flex-start; flex-wrap: wrap; }
@media (max-width: 640px) { .btn-group { justify-content: center; } }

/* ── TAGS ── */
.tag { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 0.76rem; font-weight: 700; letter-spacing: .03em; }
.tag-green { background: rgba(62,207,130,.12); color: var(--green); border: 1px solid rgba(62,207,130,.2); }
.tag-gold  { background: rgba(240,180,41,.12);  color: var(--gold); border: 1px solid rgba(240,180,41,.22); }
.tag-red   { background: rgba(232,84,84,.12);   color: var(--red); border: 1px solid rgba(232,84,84,.22); }
.tag-blue  { background: rgba(79,195,247,.1);   color: #4fc3f7; border: 1px solid rgba(79,195,247,.2); }

/* ── 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(192,24,42,.22), transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 120%, rgba(240,180,41,.10), transparent 60%),
    linear-gradient(175deg, #090608 0%, #100c0e 50%, #090608 100%);
  padding: 60px 20px 50px; border-bottom: 1px solid rgba(240,180,41,.2);
  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: linear-gradient(180deg, var(--bg2) 0%, #090608 100%);
  border-top: 1px solid rgba(240,180,41,.15);
  padding: 56px 20px 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,.4), rgba(30,140,65,.3), rgba(240,180,41,.4), transparent);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; } .footer-grid > div:last-child { display: none; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-grid > div:first-child { grid-column: 1 / -1; } }
.footer-brand {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  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;
  margin-bottom: 12px; letter-spacing: .05em;
  display: flex; align-items: center; gap: 8px;
}
.footer-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px;
  border: 1px solid rgba(240,180,41,.2); color: rgba(240,180,41,.7);
  background: rgba(240,180,41,.06);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-badge:hover {
  border-color: rgba(240,180,41,.45); color: var(--gold);
  background: rgba(240,180,41,.1);
}
.footer-col { display: flex; flex-direction: column; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 1px;
}
.footer-col a {
  display: block; font-size: 0.84rem; color: #7a6a72; padding: 5px 0;
  transition: color .2s, padding-left .2s;
  border-bottom: none;
}
.footer-col a:hover { color: var(--text); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(240,180,41,.08); padding: 24px 0 28px;
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(0,0,0,.15);
  margin: 0 -20px; padding-left: 20px; padding-right: 20px;
}
.footer-bottom-logo {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: rgba(240,180,41,.1); border: 1px solid rgba(240,180,41,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: rgba(240,180,41,.6); white-space: nowrap;
}
.footer-disclaimer { font-size: 0.74rem; color: #6a5a62; line-height: 1.7; }
.footer-disclaimer strong { color: #9a8a90; }

.btn-text-mobile { display: none; }
@media (max-width: 480px) {
  .btn-text-desktop { display: none; }
  .btn-text-mobile { display: inline; }
}
