:root {
  --red: #d71928;
  --red2: #7d0b14;
  --black: #050507;
  --steel: #171b20;
  --silver: #d9e0e8;
  --gold: #f6c45b;
  --paper: #f8f8f7;
  --paper2: #eceff2;
  --ink: #17191d;
  --muted: #68717b;
  --line: rgba(19, 25, 32, .14);
  --shadow: 0 24px 74px rgba(12, 14, 18, .18);
  --radius: 10px;
  --container: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  background: var(--paper2);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 { font-size: clamp(2.55rem, 5.1vw, 5.65rem); }
h2 { font-size: clamp(1.75rem, 3vw, 3.15rem); }
h3 { font-size: 1.12rem; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  color: white;
  background: rgba(5, 5, 7, .96);
  border-bottom: 1px solid rgba(215, 25, 40, .32);
  backdrop-filter: blur(18px);
}
.utility-bar {
  color: rgba(255, 255, 255, .74);
  background: #090a0d;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .86rem;
}
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-main {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  text-transform: uppercase;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(215, 25, 40, .36);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  padding: 0 0 14px;
}
.main-nav a {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  font-weight: 850;
  border: 1px solid transparent;
}
.main-nav a[aria-current="page"], .main-nav a:hover {
  color: white;
  background: linear-gradient(135deg, #ff3444, var(--red2));
  border-color: rgba(255, 255, 255, .12);
}
.header-actions { display: flex; gap: 10px; justify-self: end; }
.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 10px;
  color: white;
  background: rgba(255, 255, 255, .06);
  font-weight: 950;
  justify-self: end;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 950;
  line-height: 1;
  transition: .18s;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-red { color: white; background: linear-gradient(135deg, #ff3444, var(--red2)); box-shadow: 0 14px 34px rgba(215, 25, 40, .28); }
.btn-dark { color: white; border-color: rgba(255, 255, 255, .16); background: linear-gradient(135deg, #1e2229, #07080a); }
.btn-outline { color: white; border-color: rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .06); }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(100deg, rgba(5, 5, 7, .98), rgba(70, 8, 14, .88) 44%, rgba(5, 5, 7, .28)), url('/assets/images/hero-waja33.png') right center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 0 48%, rgba(215, 25, 40, .22) 48% 59%, transparent 59%), radial-gradient(circle at 15% 14%, rgba(215, 25, 40, .28), transparent 28rem);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 34px;
  align-items: end;
  padding: 72px 0 44px;
}
.hero-copy { min-height: 560px; display: grid; align-content: center; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 13px;
  color: #ffd98b;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 950;
}
.hero p, .dark p, .page-hero p, .final-cta p { color: rgba(255, 255, 255, .78); }
.lead { margin-top: 18px; max-width: 780px; font-size: clamp(1rem, 1.2vw, 1.16rem); }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.status-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(215, 25, 40, .34);
  background: rgba(5, 5, 7, .68);
  box-shadow: 0 24px 74px rgba(0, 0, 0, .28);
}
.status-card { padding: 22px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.status-card:last-child { border-bottom: 0; }
.status-card span { display: block; color: #ffd98b; font-size: .76rem; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.status-card strong { display: block; margin-top: 8px; color: white; font-size: 1.28rem; }

.signal-strip { color: white; background: #090b0e; border-top: 1px solid rgba(215, 25, 40, .28); border-bottom: 1px solid rgba(215, 25, 40, .28); }
.signal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(215, 25, 40, .28); }
.signal { padding: 20px; background: #101319; }
.signal strong { display: block; color: #ffd98b; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; }
.section { padding: 82px 0; }
.alt { background: var(--paper); }
.dark { color: white; background: linear-gradient(135deg, #050507, #171b20 58%, #74111b); }
.section-head { max-width: 860px; margin-bottom: 30px; }
.section-head p { margin-top: 12px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card, .route-card, .faq-item, .step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(12, 14, 18, .08);
}
.card h3, .route-card h3, .faq-item h3 { margin-bottom: 10px; }
.card-kicker { display: block; margin-bottom: 8px; color: #a80f1b; font-size: .78rem; font-weight: 950; text-transform: uppercase; letter-spacing: .07em; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.media-slab { overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(215, 25, 40, .2); box-shadow: var(--shadow); background: #101319; }
.media-slab img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.bonus-matrix { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(215, 25, 40, .22); border: 1px solid rgba(215, 25, 40, .22); box-shadow: var(--shadow); }
.bonus-cell { padding: 26px; background: #fff; }
.bonus-cell b { display: block; color: #a80f1b; font-size: 1.45rem; }
.arena-games { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; }
.game-list { display: grid; gap: 12px; }
.game-row { display: grid; grid-template-columns: 116px 1fr auto; gap: 15px; align-items: center; padding: 12px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; background: rgba(255, 255, 255, .07); }
.game-row img { width: 116px; height: 76px; border-radius: 10px; object-fit: cover; }
.game-row b { display: block; color: white; }
.game-row small { color: rgba(255, 255, 255, .72); }
.providers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.provider { padding: 18px; border-radius: 12px; background: #101319; color: white; border: 1px solid rgba(255, 255, 255, .12); }
.provider span { display: block; color: #ffd98b; font-weight: 950; }
.route-card { display: grid; align-content: space-between; min-height: 210px; border-top: 4px solid var(--red); }
.route-card span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; color: white; background: linear-gradient(135deg, #ff3444, var(--red2)); font-weight: 950; margin-bottom: 20px; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; color: white; background: var(--red); font-weight: 950; margin-bottom: 12px; }
.keyword-panel { padding: 38px; border-radius: var(--radius); background: linear-gradient(135deg, #fff, #eef1f4); border-left: 6px solid var(--red); box-shadow: var(--shadow); }
.keyword-panel p { margin-top: 14px; }
.page-hero { padding: 76px 0; color: white; background: linear-gradient(105deg, rgba(5, 5, 7, .96), rgba(107, 13, 24, .78)), url('/assets/images/hero-waja33.png') right center / cover no-repeat; }
.breadcrumbs { margin-bottom: 14px; color: rgba(255, 255, 255, .72); font-size: .9rem; }
.breadcrumbs a { color: #ffd98b; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: white; background: #101319; }
.faq-list { display: grid; gap: 12px; }
.final-cta { padding: 62px 0; color: white; background: linear-gradient(135deg, #050507, #7d0b14 58%, #d71928); }
.final-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.final-grid p { max-width: 760px; margin-top: 12px; }
.site-footer { padding: 46px 0 24px; background: #050507; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 28px; }
.footer-grid p, .site-footer p { color: rgba(255, 255, 255, .7); }
.footer-grid h3 { margin-bottom: 12px; color: #ffd98b; }
.footer-grid div:not(:first-child) { display: grid; align-content: start; gap: 8px; color: rgba(255, 255, 255, .75); }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .9rem; }
.floating-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; gap: 10px; padding: 10px 14px; background: rgba(5, 5, 7, .96); border-top: 1px solid rgba(215, 25, 40, .3); }

@media (max-width: 1080px) {
  .utility-bar { display: none; }
  .header-main { grid-template-columns: auto auto; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .header-actions { display: none; }
  .main-nav { display: none; padding: 12px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 14px; margin-bottom: 14px; flex-direction: column; align-items: stretch; overflow: visible; }
  .main-nav.is-open { display: flex; }
  .hero-inner, .split, .arena-games, .final-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 430px; }
  .signal-grid, .grid-4, .steps, .providers { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .bonus-matrix { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, var(--container)); }
  h1 { font-size: clamp(2.05rem, 12vw, 3.5rem); }
  h2 { font-size: clamp(1.55rem, 8vw, 2.35rem); }
  .hero { background-position: center; }
  .hero-inner { padding: 42px 0 34px; }
  .hero-copy { min-height: auto; }
  .status-board, .signal-grid, .grid-2, .grid-3, .grid-4, .steps, .providers, .bonus-matrix, .footer-grid { grid-template-columns: 1fr; }
  .game-row { grid-template-columns: 88px 1fr; }
  .game-row img { width: 88px; height: 66px; }
  .game-row .btn { grid-column: 1 / -1; }
  .section { padding: 56px 0; }
  .card, .route-card, .faq-item, .step, .keyword-panel { padding: 20px; }
  .floating-cta { display: flex; }
  .floating-cta .btn, .hero-actions .btn { flex: 1 1 auto; }
  body { padding-bottom: 72px; }
}
