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

:root {
  --ink: #03050b;
  --night: #06101f;
  --navy: #071a37;
  --blue: #0a62ff;
  --blue2: #00b7ff;
  --royal: #062f88;
  --gold: #f5c65b;
  --gold2: #b87214;
  --gold3: #ffe391;
  --red: #e10f25;
  --pink: #ff2da0;
  --white: #f8fbff;
  --muted: #b7c7dd;
  --panel: rgba(4,10,22,.82);
  --panel2: rgba(10,25,54,.75);
  --line: rgba(245,198,91,.34);
  --lineBlue: rgba(0,183,255,.36);
  --shadow: 0 24px 80px rgba(0,0,0,.72);
  --glowBlue: 0 0 18px rgba(0,183,255,.38), 0 0 50px rgba(10,98,255,.18);
  --glowGold: 0 0 18px rgba(245,198,91,.38), 0 0 50px rgba(184,114,20,.22);
  --glowRed: 0 0 18px rgba(225,15,37,.38), 0 0 40px rgba(225,15,37,.12);
}

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

html { scroll-behavior: smooth; background: #010309; }

body {
  background:
    radial-gradient(circle at 18% -10%, rgba(13,92,255,.3), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(245,198,91,.12), transparent 26%),
    linear-gradient(180deg, #01040a 0%, #061326 45%, #02050c 100%);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, Arial, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }

/* ── GRID OVERLAY ── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .1;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: soft-light;
}
.grid-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 60%);
}

/* ── LAYOUT ── */
.wrap { width: min(1480px, calc(100% - 44px)); margin: 0 auto; position: relative; z-index: 3; }

/* ── TOPBAR ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; height: 80px; z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,.94), rgba(1,4,12,.8));
  border-bottom: 1px solid rgba(245,198,91,.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.nav-inner {
  width: min(1500px, calc(100% - 36px)); height: 100%; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 220px; }
.brand img { height: 64px; width: auto; filter: drop-shadow(0 0 14px rgba(245,198,91,.3)); }
.brand-text { font-family: Teko, sans-serif; font-size: 28px; letter-spacing: .05em; color: var(--gold); text-shadow: 0 0 16px rgba(245,198,91,.3); display: none; }

.nav-links { flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 28px 11px 24px;
  font-family: Teko, sans-serif; font-size: 18px; letter-spacing: .07em; text-transform: uppercase;
  color: #dce8f8; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 10px; right: 10px; bottom: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue2));
  transform: scaleX(0); transform-origin: center; transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-socials { display: flex; gap: 8px; align-items: center; }
.nav-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(245,198,91,.45); color: var(--gold);
  background: rgba(0,0,0,.4); font-size: 16px; font-weight: 800;
  transition: .2s;
}
.nav-socials a:hover { transform: translateY(-2px); box-shadow: var(--glowGold); background: rgba(245,198,91,.12); }

.vip-nav-btn {
  display: grid; place-items: center; padding: 0 14px; height: 46px;
  border-radius: 12px; border: 1px solid rgba(245,198,91,.5);
  background: linear-gradient(180deg, rgba(23,16,0,.9), rgba(5,5,7,.9));
  font-family: Teko, sans-serif; font-size: 20px; color: var(--gold);
  box-shadow: inset 0 0 20px rgba(245,198,91,.08), 0 0 16px rgba(245,198,91,.1);
  white-space: nowrap; transition: .2s;
}
.vip-nav-btn:hover { box-shadow: var(--glowGold); }

.menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid rgba(245,198,91,.38); background: rgba(4,10,22,.8);
  color: var(--gold); font-size: 24px; cursor: pointer; margin-left: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 22px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  font-family: Teko, sans-serif; font-size: 20px; letter-spacing: .07em;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  transition: .2s; box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.btn:hover { transform: translateY(-3px); }
.btn-red { background: linear-gradient(180deg,#fb2138,#9f0716); border-color: rgba(255,68,84,.5); color: #fff; }
.btn-red:hover { box-shadow: var(--glowRed); }
.btn-gold { background: linear-gradient(180deg,#ffe391,#c98924 45%,#734102); color: #060604; border-color: rgba(255,222,133,.6); }
.btn-gold:hover { box-shadow: var(--glowGold); }
.btn-ghost { background: rgba(3,7,17,.75); border-color: rgba(245,198,91,.35); color: var(--gold); }
.btn-ghost:hover { box-shadow: var(--glowBlue); border-color: rgba(0,183,255,.5); color: #dff8ff; }
.btn-blue { background: linear-gradient(180deg,#1a7fff,#0a3cb8); border-color: rgba(0,183,255,.5); color: #fff; }
.btn-blue:hover { box-shadow: var(--glowBlue); }
.btn-lg { min-height: 58px; font-size: 24px; padding: 0 30px; }
.btn-sm { min-height: 40px; font-size: 17px; padding: 0 16px; }
.btn-full { width: 100%; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  position: relative; padding-top: 80px; overflow: hidden;
  background: #01040a;
}
.page-hero-img {
  width: 100%; max-height: 520px; object-fit: cover; object-position: center top;
  display: block;
  filter: brightness(.88) saturate(1.08);
}
.page-hero-img.portrait {
  max-height: 640px; object-position: center center;
}
.page-hero-overlay {
  position: absolute; inset: 80px 0 0;
  background: linear-gradient(180deg, transparent 40%, #01040a 100%);
  pointer-events: none;
}

/* ── SECTIONS ── */
.section { padding: 80px 0; position: relative; z-index: 3; }
.section-sm { padding: 50px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(1,4,14,.95), rgba(4,12,28,.9));
  border-top: 1px solid rgba(245,198,91,.12);
  border-bottom: 1px solid rgba(245,198,91,.12);
}

.eyebrow {
  font-family: Teko, sans-serif; color: var(--blue2);
  font-size: 20px; text-transform: uppercase; letter-spacing: .16em;
  margin-bottom: 6px;
}
.section-title {
  font-family: Bebas Neue, Teko, sans-serif;
  font-size: clamp(44px, 5vw, 82px); line-height: .9;
  letter-spacing: .03em; text-transform: uppercase; color: #fff;
  text-shadow: 0 0 24px rgba(0,183,255,.18);
}
.section-title span { color: var(--gold); }
.section-title .red { color: var(--red); }
.section-lead { color: var(--muted); line-height: 1.6; font-size: 15px; max-width: 600px; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }

/* ── CARDS ── */
.card {
  border: 1px solid rgba(245,198,91,.28);
  background: linear-gradient(180deg, rgba(5,13,30,.92), rgba(1,3,9,.88));
  border-radius: 22px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 10% 0%, rgba(0,183,255,.12), transparent 26%),
              radial-gradient(circle at 95% 100%, rgba(245,198,91,.1), transparent 24%);
}

/* ── BONUS CARDS ── */
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.bonus-card {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(245,198,91,.28); background: #060a13;
  min-height: 240px; isolation: isolate; transition: .25s;
}
.bonus-card:hover { transform: translateY(-6px); border-color: rgba(0,183,255,.55); box-shadow: var(--glowBlue); }
.bonus-card-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .32; filter: saturate(1.2) contrast(1.1);
  transition: opacity .3s;
}
.bonus-card:hover .bonus-card-bg { opacity: .45; }
.bonus-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.88) 55%, rgba(0,0,0,.97) 100%);
}
.bonus-card-body { position: absolute; inset: auto 0 0; z-index: 2; padding: 14px; }
.bonus-ribbon {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  padding: 5px 9px; border-radius: 999px;
  background: rgba(0,0,0,.6); border: 1px solid rgba(245,198,91,.4);
  color: var(--gold); font-size: 10px; text-transform: uppercase; font-weight: 800; letter-spacing: .06em;
}
.bonus-brand { font-family: Teko, sans-serif; font-size: 34px; letter-spacing: .02em; line-height: .88; color: #fff; }
.bonus-brand em { font-style: normal; color: var(--gold); }
.bonus-offer { font-weight: 900; font-size: 15px; color: #fff; margin-top: 7px; }
.bonus-meta { color: #aec4e0; font-size: 11px; margin: 4px 0 10px; }

/* ── LINK WALL ── */
.link-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.link-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: 12px; font-weight: 800; font-size: 14px;
  border: 1px solid rgba(245,198,91,.22); background: rgba(0,0,0,.38);
  color: #fff; transition: .2s;
}
.link-btn span { color: var(--gold); font-size: 16px; }
.link-btn:hover { transform: translateY(-3px); border-color: rgba(0,183,255,.5); box-shadow: var(--glowBlue); color: #dff8ff; }

/* ── VIP FORM ── */
.vip-form { display: grid; gap: 10px; }
.vip-form input {
  width: 100%; min-height: 48px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.44);
  color: #fff; padding: 0 14px; outline: none; transition: .2s;
}
.vip-form input:focus { border-color: rgba(0,183,255,.55); box-shadow: 0 0 0 3px rgba(0,183,255,.1); }
.vip-form textarea {
  width: 100%; min-height: 110px; border-radius: 10px; resize: vertical;
  border: 1px solid rgba(255,255,255,.14); background: rgba(0,0,0,.44);
  color: #fff; padding: 12px 14px; outline: none; transition: .2s;
}
.vip-form textarea:focus { border-color: rgba(0,183,255,.55); box-shadow: 0 0 0 3px rgba(0,183,255,.1); }

/* ── CHECK LIST ── */
.check-list { display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: #eef5ff; list-style: none; }
.check-icon {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  color: #070706; font-weight: 900; font-size: 13px;
}

/* ── FEATURE GRID ── */
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card {
  border: 1px solid rgba(0,183,255,.22); border-radius: 20px; padding: 24px;
  background: linear-gradient(180deg, rgba(6,19,45,.8), rgba(0,0,0,.65));
  box-shadow: inset 0 0 28px rgba(0,183,255,.04); min-height: 200px;
}
.feature-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(180deg,rgba(0,183,255,.18),rgba(245,198,91,.1));
  border: 1px solid rgba(245,198,91,.3); color: var(--gold); margin-bottom: 14px;
}
.feature-card h3 {
  font-family: Teko, sans-serif; font-size: 28px; line-height: .92;
  color: #fff; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px;
}
.feature-card p { color: var(--muted); line-height: 1.5; font-size: 14px; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1.3fr .85fr .95fr;
  grid-auto-rows: 260px;
}
.gallery-item {
  border-radius: 20px; overflow: hidden; position: relative;
  border: 1px solid rgba(245,198,91,.2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85));
  z-index: 1;
}
.gallery-item b {
  position: absolute; z-index: 2; left: 16px; bottom: 14px;
  font-family: Teko, sans-serif; font-size: 24px; text-transform: uppercase;
  color: #fff; letter-spacing: .06em; text-shadow: 0 0 12px #000;
}
.gallery-item.big { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid rgba(245,198,91,.3);
  background: linear-gradient(180deg, rgba(2,5,12,.9), rgba(4,12,28,.82));
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.trust-item {
  display: flex; gap: 12px; padding: 18px 20px; align-items: center;
  border-right: 1px solid rgba(245,198,91,.15);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  border: 1px solid rgba(245,198,91,.35); display: grid; place-items: center;
  color: var(--gold); font-size: 22px; background: rgba(0,0,0,.34);
}
.trust-item strong { display: block; color: var(--gold); font-family: Teko, sans-serif; font-size: 20px; text-transform: uppercase; line-height: .9; letter-spacing: .05em; }
.trust-item span { display: block; color: #b8c9de; font-size: 12px; line-height: 1.3; margin-top: 4px; }

/* ── SOCIAL BUTTONS ── */
.social-links { display: grid; gap: 10px; }
.social-link {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid rgba(245,198,91,.24); border-radius: 13px;
  padding: 14px 16px; background: rgba(0,0,0,.34);
  color: #fff; font-weight: 800; transition: .2s; font-size: 15px;
}
.social-link:hover { border-color: rgba(245,198,91,.58); box-shadow: var(--glowGold); }
.social-link .social-icon { font-size: 20px; width: 36px; text-align: center; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(245,198,91,.22);
  background: rgba(0,0,0,.85);
  padding: 28px 0 34px; position: relative; z-index: 5;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo img { height: 50px; }
.footer-copy { color: #8fa5be; font-size: 13px; line-height: 1.5; max-width: 480px; }
.footer-copy a { color: var(--gold); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(245,198,91,.38); color: var(--gold);
  background: rgba(0,0,0,.4); font-weight: 800; transition: .2s;
}
.footer-socials a:hover { transform: translateY(-2px); box-shadow: var(--glowGold); }
.footer-rg {
  width: 100%; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 16px;
  color: #6a7e95; font-size: 12px; line-height: 1.5; text-align: center;
}

/* ── TOAST ── */
.toast {
  position: fixed; right: 18px; bottom: 18px; z-index: 999;
  transform: translateY(140%); opacity: 0; transition: .3s;
  border: 1px solid rgba(0,183,255,.38);
  background: linear-gradient(180deg, rgba(5,16,38,.96), rgba(0,0,0,.94));
  color: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow); max-width: 320px; font-size: 14px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── 18+ BADGE ── */
.age-badge {
  width: 72px; height: 72px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  border: 2px solid var(--gold); color: var(--gold);
  font-family: Teko, sans-serif; font-size: 30px;
  background: #050505; box-shadow: var(--glowGold);
}

/* ── COMPLIANCE BOX ── */
.compliance-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 30px;
}
.compliance-box h3 {
  font-family: Teko, sans-serif; color: var(--gold);
  font-size: 32px; text-transform: uppercase; margin-bottom: 8px;
}
.compliance-box p { color: var(--muted); line-height: 1.5; max-width: 820px; }

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .nav-links {
    position: fixed; top: 80px; left: 14px; right: 14px;
    display: none; flex-direction: column; align-items: stretch;
    background: rgba(2,5,14,.97); border: 1px solid rgba(245,198,91,.28);
    border-radius: 16px; padding: 12px; box-shadow: var(--shadow); z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .menu-btn { display: block; }
  .nav-socials, .vip-nav-btn { display: none; }
  .brand { min-width: auto; }
  .brand-text { display: block; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .section-head { flex-direction: column; }
}

@media (max-width: 720px) {
  .wrap, .nav-inner { width: min(100% - 22px, 1480px); }
  .topbar { height: 68px; }
  .page-hero { padding-top: 68px; }
  .page-hero-img { max-height: 300px; }
  .section { padding: 52px 0; }
  .section-title { font-size: clamp(36px, 10vw, 64px); }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.big { grid-row: auto; }
  .bonus-grid { grid-template-columns: repeat(2,1fr); }
  .link-grid { grid-template-columns: 1fr 1fr; }
  .compliance-box { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-logo { display: flex; justify-content: center; }
  .btn-lg { font-size: 20px; }
}
@media (max-width: 480px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
}
