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

:root {
  --bg: #071018;
  --bg-soft: #0d1f2d;
  --bg-card: rgba(255, 255, 255, 0.05);
  --teal: #00c9b7;
  --teal-dim: #00a896;
  --coral: #ff6b4a;
  --coral-bright: #ff8566;
  --amber: #ffc857;
  --text: #e8f4f8;
  --text-soft: #8ba3b5;
  --border: rgba(0, 201, 183, 0.18);
  --glass: rgba(13, 31, 45, 0.72);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--coral-bright); }

/* ===== PROMINENT FREE WARNING ===== */
.alert-strip {
  background: repeating-linear-gradient(
    -45deg,
    #ff3d00,
    #ff3d00 12px,
    #ff9100 12px,
    #ff9100 24px
  );
  color: #fff;
  text-align: center;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 4px solid #fff;
  animation: stripMove 12s linear infinite;
}
@keyframes stripMove {
  0% { background-position: 0 0; }
  100% { background-position: 200px 0; }
}
.alert-strip-inner {
  background: rgba(0, 0, 0, 0.55);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.alert-strip .badge {
  background: #fff;
  color: #d50000;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.alert-strip strong {
  font-size: clamp(13px, 2.5vw, 16px);
  font-weight: 800;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.alert-strip span {
  font-size: 13px;
  opacity: 0.95;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 52px;
  z-index: 400;
}
.header-row {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.3px;
}
.brand-mark img { width: 38px; height: 38px; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  color: var(--teal);
  cursor: pointer;
}

.main-nav {
  display: flex;
  gap: 2px;
}
.main-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--teal);
  background: rgba(0, 201, 183, 0.1);
}

.header-btns {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
  border: none;
  letter-spacing: 0.3px;
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-ghost:hover {
  background: rgba(0, 201, 183, 0.12);
}
.btn-fill {
  background: linear-gradient(135deg, var(--coral), #ff5252);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 74, 0.35);
}
.btn-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 74, 0.45);
}
.btn-lg { padding: 14px 32px; font-size: 14px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(0, 201, 183, 0.22) 0%, transparent 65%),
    radial-gradient(circle at 85% 60%, rgba(255, 107, 74, 0.12) 0%, transparent 45%),
    var(--bg);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255, 200, 87, 0.15);
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 200, 87, 0.3);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-lead {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-device {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 0.85;
  background: linear-gradient(160deg, #122a3d 0%, #0a1620 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.hero-device-screen {
  background: #061018;
  border-radius: 10px;
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 201, 183, 0.2);
}
.reel {
  width: 52px;
  height: 64px;
  background: linear-gradient(180deg, #1a3344, #0d2030);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--amber);
  border: 1px solid rgba(255, 200, 87, 0.3);
}
.hero-device-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--coral), #ff5252);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: default;
}

/* ===== FREE NOTICE BOX ===== */
.notice-panel {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 61, 0, 0.15), rgba(255, 145, 0, 0.1));
  border: 3px solid #ff6d00;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 36px;
  box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.15), 0 12px 40px rgba(255, 61, 0, 0.2);
  animation: noticeGlow 2.5s ease-in-out infinite;
}
@keyframes noticeGlow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.15), 0 12px 40px rgba(255, 61, 0, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(255, 109, 0, 0.25), 0 16px 50px rgba(255, 61, 0, 0.35); }
}
.notice-panel-icon {
  width: 52px;
  height: 52px;
  background: #ff3d00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 61, 0, 0.5);
}
.notice-panel h3 {
  color: #ffb74d;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.notice-panel p {
  color: #ffe0b2;
  font-size: 14px;
  line-height: 1.75;
}

/* ===== SECTIONS ===== */
.block {
  padding: 72px 0;
}
.block-muted {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.eyebrow {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.block-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text);
}
.block-title.accent { color: var(--teal); }
.block-desc {
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ===== ABOUT SPLIT ===== */
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-visual {
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 201, 183, 0.3) 0%, transparent 50%),
    linear-gradient(225deg, rgba(255, 107, 74, 0.25) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  backdrop-filter: blur(8px);
}

/* ===== PERKS GRID ===== */
.perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.perk {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: 0.25s;
}
.perk:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 201, 183, 0.15);
}
.perk-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(0, 201, 183, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.perk h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.perk p {
  font-size: 13px;
  color: var(--text-soft);
}

/* ===== GAME ROWS ===== */
.game-rows { margin-top: 8px; }
.game-row {
  margin-bottom: 36px;
}
.game-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.game-row-head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}
.game-row-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.game-row-track.wide {
  grid-template-columns: repeat(5, 1fr);
}

/* ===== GAME CARDS ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.game-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s;
  cursor: default;
}
.game-tile:hover {
  border-color: var(--coral);
  transform: scale(1.03);
  box-shadow: 0 12px 36px rgba(255, 107, 74, 0.2);
}
.game-cover {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}
.game-info {
  padding: 12px 14px 16px;
}
.game-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.game-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gc-1 { background: linear-gradient(145deg, #1a3a4a, #0d2535); }
.gc-2 { background: linear-gradient(145deg, #3d1f4a, #251535); }
.gc-3 { background: linear-gradient(145deg, #1f3d2a, #122818); }
.gc-4 { background: linear-gradient(145deg, #4a3520, #2a1f10); }
.gc-5 { background: linear-gradient(145deg, #1f2a4a, #121830); }
.gc-6 { background: linear-gradient(145deg, #4a2030, #2a1020); }
.gc-7 { background: linear-gradient(145deg, #1a4040, #0d2828); }
.gc-8 { background: linear-gradient(145deg, #403020, #281810); }
.gc-9 { background: linear-gradient(145deg, #30204a, #1a1030); }
.gc-10 { background: linear-gradient(145deg, #204a30, #102818); }

/* ===== CTA ===== */
.cta-block {
  padding: 72px 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255, 107, 74, 0.15) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.cta-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 52px;
}
.cta-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.cta-text p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

/* ===== PAGE CONTENT ===== */
.page-top {
  padding: 48px 0 28px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-top h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.page-top p {
  color: var(--text-soft);
  margin-top: 10px;
  max-width: 600px;
}
.prose {
  padding: 56px 0 72px;
}
.prose h2 {
  font-size: 1.15rem;
  color: var(--coral);
  margin: 28px 0 10px;
  font-weight: 700;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li {
  color: var(--text-soft);
  margin-bottom: 12px;
  line-height: 1.8;
}
.prose ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #040a10;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.footer-mark img { width: 52px; height: 52px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.footer-links a {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}
.footer-links a:hover { color: var(--teal); }

.support-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.support-row p {
  width: 100%;
  text-align: center;
  color: var(--text-soft);
  font-size: 12px;
}
.support-row a {
  opacity: 0.8;
  transition: 0.2s;
}
.support-row a:hover { opacity: 1; }
.support-row img {
  height: 36px;
  width: auto;
  max-width: 130px;
}

.footer-note {
  text-align: center;
  color: #5a7080;
  font-size: 12px;
  line-height: 1.7;
}
.footer-note p { margin-bottom: 6px; }

/* ===== COOKIE BANNER ===== */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-soft);
  border-top: 2px solid var(--teal);
  padding: 18px 20px;
  z-index: 600;
  display: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}
#cookieBanner.show { display: block; }
.cookie-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-row p {
  color: var(--text-soft);
  font-size: 13px;
  flex: 1;
  min-width: 220px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-accept {
  background: var(--teal);
  color: #041018;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.cookie-more {
  color: var(--text-soft);
  font-size: 13px;
  padding: 10px 14px;
  text-decoration: none;
}
.cookie-more:hover { color: var(--teal); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .perks { grid-template-columns: repeat(2, 1fr); }
  .games-grid,
  .game-row-track { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .menu-btn { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .header-btns .btn-ghost { display: none; }
  .site-header { position: relative; top: 0; }
  .alert-strip { position: relative; }
  .hero-layout,
  .split-row,
  .cta-row { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-device { max-width: 260px; }
  .notice-panel { flex-direction: column; }
  .games-grid,
  .game-row-track { grid-template-columns: repeat(2, 1fr); }
  .perks { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .games-grid,
  .game-row-track { grid-template-columns: 1fr 1fr; gap: 10px; }
}
