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

:root {
  --bg: #0b1628;
  --bg-soft: #111f38;
  --bg-card: rgba(255, 255, 255, 0.04);
  --cyan: #00e5ff;
  --cyan-dim: #00b8cc;
  --pink: #ff2d78;
  --pink-soft: #ff5c96;
  --lime: #b8ff3c;
  --text: #e4edf8;
  --text-soft: #8fa3bc;
  --border: rgba(0, 229, 255, 0.15);
  --glass: rgba(17, 31, 56, 0.75);
  --radius: 14px;
  --radius-lg: 24px;
  --font: 'Space Grotesk', system-ui, sans-serif;
  --font-display: 'Bricolage Grotesque', 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: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pink-soft); }

/* ===== PROMINENT FREE WARNING ===== */
.notice-bar {
  position: sticky;
  top: 0;
  z-index: 700;
  background: var(--lime);
  border-bottom: 5px solid #0b1628;
  box-shadow: 0 0 40px rgba(184, 255, 60, 0.45), inset 0 -2px 0 rgba(0,0,0,.15);
  animation: noticeGlow 2.5s ease-in-out infinite;
}
@keyframes noticeGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(184, 255, 60, 0.35); }
  50% { box-shadow: 0 0 50px rgba(184, 255, 60, 0.65); }
}
.notice-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.notice-bar .notice-pill {
  background: #0b1628;
  color: var(--lime);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  flex-shrink: 0;
  animation: pillBounce 1.8s ease-in-out infinite;
}
@keyframes pillBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.notice-bar strong {
  color: #0b1628;
  font-family: var(--font-display);
  font-size: clamp(14px, 3vw, 19px);
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.notice-bar span {
  color: #1a2e4a;
  font-size: 13px;
  font-weight: 600;
}

/* ===== HEADER ===== */
.site-head {
  position: sticky;
  top: 0;
  z-index: 600;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.head-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo-mark img {
  display: block;
  width: 46px;
  height: 46px;
  transition: transform .25s;
}
.logo-mark:hover img { transform: rotate(-8deg) scale(1.05); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.site-nav {
  display: flex;
  gap: 6px;
  margin-left: 12px;
}
.site-nav a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(0, 229, 255, 0.1);
}

.head-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}
.btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}
.btn-solid {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #0b1628;
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.35);
}
.btn-solid:hover {
  color: #0b1628;
  box-shadow: 0 8px 32px rgba(255, 45, 120, 0.5);
}
.btn-lg { padding: 15px 32px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(0, 229, 255, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(255, 45, 120, 0.1), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 45, 120, 0.15);
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 120, 0.3);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-orbit {
  width: 320px;
  height: 320px;
  position: relative;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(0, 229, 255, 0.25);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.orbit-core {
  position: absolute;
  inset: 60px;
  background: linear-gradient(145deg, var(--bg-soft), var(--bg));
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.orbit-symbols {
  display: flex;
  gap: 12px;
}
.orbit-symbols span {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 24px;
}
.orbit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
}
.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--pink);
}
.orbit-dot:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(3) { bottom: 20%; right: 0; }
.orbit-dot:nth-child(4) { bottom: 20%; left: 0; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
@keyframes spin { to { transform: rotate(360deg); } }

.disclaimer-panel {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  padding: 24px;
  background: rgba(184, 255, 60, 0.08);
  border: 2px solid rgba(184, 255, 60, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(184, 255, 60, 0.08);
}
.disclaimer-panel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--lime);
  color: #0b1628;
  font-weight: 900;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.disclaimer-panel h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--lime);
  margin-bottom: 8px;
}
.disclaimer-panel p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.hero-scroll {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.hero-scroll::-webkit-scrollbar { display: none; }

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-text {
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.split-graphic {
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(255, 45, 120, 0.15)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-graphic::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
}
.split-graphic-inner {
  font-size: 80px;
  position: relative;
  z-index: 1;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.perk-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-4px);
}
.perk-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.perk-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.perk-card p {
  color: var(--text-soft);
  font-size: 13px;
}

/* ===== GAME CARDS ===== */
.game-row {
  margin-top: 36px;
}
.game-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.game-row-head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.game-row-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan-dim) transparent;
}

.game-card {
  flex: 0 0 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
  transition: border-color .25s, transform .25s;
}
.game-card:hover {
  border-color: rgba(255, 45, 120, 0.4);
  transform: translateY(-3px);
}
.game-thumb {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 22, 40, 0.7), transparent 50%);
}
.game-thumb-icon {
  font-size: 36px;
  position: relative;
  z-index: 1;
}
.game-meta {
  padding: 12px 14px;
}
.game-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.game-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

/* placeholder gradients */
.ph-1 { background: linear-gradient(135deg, #1a0533, #6b21a8); }
.ph-2 { background: linear-gradient(135deg, #0c2d48, #145da0); }
.ph-3 { background: linear-gradient(135deg, #1b4332, #40916c); }
.ph-4 { background: linear-gradient(135deg, #4a0404, #dc2f02); }
.ph-5 { background: linear-gradient(135deg, #03045e, #0077b6); }
.ph-6 { background: linear-gradient(135deg, #2d1b69, #11998e); }
.ph-7 { background: linear-gradient(135deg, #ff6b6b, #feca57); }
.ph-8 { background: linear-gradient(135deg, #3d2c00, #b8860b); }
.ph-9 { background: linear-gradient(135deg, #0f0c29, #302b63); }
.ph-10 { background: linear-gradient(135deg, #134e4a, #065f46); }

/* ===== CTA ===== */
.cta-section {
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 229, 255, 0.08), transparent);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
}
.cta-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 32px;
  position: relative;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-top h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-top p {
  color: var(--text-soft);
  max-width: 600px;
}

.content-block {
  padding: 56px 0 80px;
}
.content-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--cyan);
}
.content-block h2:first-child { margin-top: 0; }
.content-block p,
.content-block li {
  color: var(--text-soft);
  margin-bottom: 14px;
}
.content-block ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.site-foot {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.foot-logo img {
  display: block;
  width: 54px;
  height: 54px;
}
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.foot-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}
.foot-nav a:hover { color: var(--text); }

.support-block {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  text-align: center;
}
.support-block p {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 18px;
}
.support-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.support-logos a {
  opacity: 0.85;
  transition: opacity .2s;
}
.support-logos a:hover { opacity: 1; }
.support-logos img {
  height: 36px;
  width: auto;
  display: block;
}

.foot-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.foot-bottom p {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 6px;
}

/* ===== COOKIE BANNER ===== */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform .35s ease;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
}
#cookieBanner.show { transform: translateY(0); }
.cookie-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-wrap p {
  color: var(--text-soft);
  font-size: 14px;
  flex: 1;
  min-width: 240px;
}
.cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: #0b1628;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
}
.cookie-more {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-orbit { width: 260px; height: 260px; }
  .split-layout { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    margin-left: 0;
  }
  .site-nav.open { display: flex; }
  .site-head { position: relative; }
  .head-actions { display: none; }
  .perks-grid { grid-template-columns: 1fr; }
  .foot-top { flex-direction: column; text-align: center; }
  .foot-nav { justify-content: center; }
}
