@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --brand:      #FF8A00;
  --brand-dark: #c96600;
  --brand-glow: rgba(255,138,0,.22);
  --bg:         #060e0d;
  --bg2:        #091210;
  --panel:      #0d1a18;
  --panel2:     #122220;
  --deep:       #002223;
  --text:       #e8f0ea;
  --muted:      #7aad95;
  --line:       rgba(255,255,255,.1);
  --radius:     16px;
  --sh:         0 24px 64px rgba(0,0,0,.45);
  --font-head:  'Cinzel', serif;
  --font-body:  'Barlow', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(ellipse 90% 50% at 50% -5%, rgba(0,34,35,.9) 0%, transparent 65%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }

/* ── TOPBAR ── */
.topbar {
  background: var(--deep);
  border-bottom: 1px solid rgba(255,138,0,.2);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 7px 16px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,14,13,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 38px; width: auto; display: block; flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .16s, background .16s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.06); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s, filter .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 10px 30px var(--brand-glow);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,138,0,.5);
  color: var(--brand);
}
.btn-outline:hover { background: rgba(255,138,0,.07); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-sm { padding: 10px 20px; font-size: .84rem; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 11px;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
}

/* ── HERO ── */
.hero { padding: 64px 0 52px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(255,138,0,.08);
  border: 1px solid rgba(255,138,0,.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.hero-title span { color: var(--brand); }

.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: var(--brand); }
.stat-item span { font-size: .76rem; color: var(--muted); letter-spacing: .3px; }

.hero-media { position: relative; }

.banner-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,138,0,.15);
  box-shadow: var(--sh);
  position: relative;
}
.banner-wrap a { display: block; }
.banner-wrap img { width: 100%; height: auto; }

.banner-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0,34,35,.9);
  border: 1px solid rgba(255,138,0,.4);
  border-radius: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(12px);
  z-index: 2;
}
.banner-badge strong { display: block; color: var(--brand); font-size: 1.05rem; }
.banner-badge span { font-size: .76rem; color: var(--muted); }

/* ── SECTIONS ── */
.section { padding: 60px 0; }
.section-alt { background: var(--bg2); }
.section-deep { background: var(--deep); }

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

.section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #fff;
  line-height: 1.15;
}

/* ── INFO TABLE ── */
.info-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 13px 20px; font-size: .9rem; }
.info-table td:first-child { color: var(--brand); font-weight: 700; width: 44%; background: rgba(255,138,0,.03); }
.info-table td:last-child { color: var(--text); }

/* ── CARDS ── */
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-cats { grid-template-columns: repeat(6,1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(255,138,0,.35); transform: translateY(-3px); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-family: var(--font-head); font-size: 1rem; color: #fff; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .88rem; line-height: 1.65; margin: 0; }

/* ── GAME CARDS ── */
.game-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.game-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(255,138,0,.4); }
.game-card > picture img,
.game-card > img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.game-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
}
.game-info b { display: block; font-size: .88rem; color: #fff; }
.game-info small { color: var(--muted); font-size: .76rem; }

/* ── CAT CARDS ── */
.cat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color .18s, transform .18s;
  cursor: pointer;
}
.cat-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.cat-card img { width: 48px; height: 48px; object-fit: contain; margin: 0 auto 10px; }
.cat-card .cat-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.cat-card b { display: block; font-size: .88rem; color: #fff; }
.cat-card span { font-size: .74rem; color: var(--muted); }

/* ── BONUS CARDS ── */
.bonus-card {
  background: var(--panel2);
  border: 1px solid rgba(255,138,0,.2);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.bonus-card h3 { font-family: var(--font-head); font-size: 1rem; color: #fff; margin-bottom: 10px; }
.bonus-card .amount { font-family: var(--font-head); font-size: 1.5rem; color: var(--brand); display: block; margin: 8px 0 12px; }
.bonus-card p { color: var(--muted); font-size: .87rem; line-height: 1.65; margin-bottom: 18px; }

/* ── FEATURE SPLIT ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-split.rev { direction: rtl; }
.feature-split.rev > * { direction: ltr; }

.feature-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh);
}
.feature-media a { display: block; }
.feature-media img { width: 100%; height: auto; }

.feature-text h2 { font-family: var(--font-head); font-size: clamp(1.5rem,2.8vw,2rem); color: #fff; margin-bottom: 16px; line-height: 1.2; }
.feature-text p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; font-size: .93rem; }

.feature-list { list-style: none; margin: 14px 0 22px; }
.feature-list li {
  color: var(--muted);
  font-size: .9rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li::before { content: '◆'; color: var(--brand); font-size: .55rem; flex-shrink: 0; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,34,35,.5) 0%, transparent 100%);
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem,3.8vw,2.6rem);
  color: #fff;
  margin: 12px 0 14px;
  line-height: 1.1;
}
.page-hero-lead { color: var(--muted); font-size: .97rem; line-height: 1.72; max-width: 680px; }

/* ── CONTENT BLOCK ── */
.content-block { max-width: 780px; }
.content-block h2 { font-family: var(--font-head); font-size: 1.35rem; color: #fff; margin: 28px 0 12px; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--muted); line-height: 1.78; margin-bottom: 12px; font-size: .93rem; }
.content-block ul, .content-block ol { color: var(--muted); padding-left: 20px; margin-bottom: 12px; font-size: .93rem; line-height: 1.75; }
.content-block li { margin-bottom: 5px; }
.content-block strong { color: var(--text); }
.content-block a { color: var(--brand); text-decoration: underline; }

/* ── NOTICE ── */
.notice {
  background: rgba(255,138,0,.07);
  border: 1px solid rgba(255,138,0,.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #ffb347;
  font-size: .87rem;
  line-height: 1.65;
  margin: 18px 0;
}

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.step-num {
  min-width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { color: #fff; font-size: .93rem; margin-bottom: 4px; }
.step-content p { color: var(--muted); font-size: .86rem; margin: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 17px 20px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: .93rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after { content: '+'; color: var(--brand); font-size: 1.3rem; font-weight: 300; flex-shrink: 0; }
.faq-q.open::after { content: '−'; }
.faq-a { display: none; padding: 0 20px 17px; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* ── CONTACT FORM ── */
.contact-form { display: grid; gap: 14px; }
.field {
  width: 100%;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .93rem;
  outline: none;
  transition: border-color .16s;
}
.field:focus { border-color: rgba(255,138,0,.45); }
.field::placeholder { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
textarea.field { resize: vertical; min-height: 130px; }

/* ── VIP BOXES ── */
.vip-box {
  padding: 16px 18px;
  background: rgba(0,34,35,.6);
  border: 1px solid rgba(255,138,0,.18);
  border-radius: var(--radius);
}
.vip-box strong { color: var(--brand); display: block; margin-bottom: 6px; }
.vip-box p { color: var(--muted); font-size: .83rem; margin: 0; line-height: 1.55; }

/* ── FOOTER ── */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--muted); font-size: .82rem; line-height: 1.7; max-width: 300px; margin-top: 14px; }
.footer-col h4 { font-family: var(--font-head); font-size: .76rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: .86rem; padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: .78rem; }
.badge-18 { background: #c0392b; color: #fff; font-weight: 900; font-size: .76rem; padding: 4px 10px; border-radius: 6px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,138,0,.3), transparent); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s, transform .55s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .navbar { display: flex; flex-wrap: nowrap; }
  .logo { min-width: 0; flex-shrink: 0; }
  .logo img { height: 34px; width: auto; max-width: none; }
  .nav-actions { flex-shrink: 0; }
  .hero-grid, .feature-split, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2,1fr); }
  .grid-cats { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero { padding-top: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .game-grid { grid-template-columns: repeat(2,1fr); }
  .grid-cats { grid-template-columns: repeat(2,1fr); }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
}

/* ── WIN CHIPS (replaced tiny icons) ── */
.win-icons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.win-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,138,0,.1);
  border: 1px solid rgba(255,138,0,.3);
  border-radius: 12px;
  font-size: 1.4rem;
}

@media (max-width: 480px) {
  .logo img { height: 30px; }
  .nav-actions .btn:first-child { display: none; }
  .navbar { gap: 10px; }
}
