/* Static HTML export of the original Next.js landing (no build tools required) */

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

:root {
  --background: #070b18;
  --foreground: #e8ecf5;
  --card: #0d1224;
  --card-foreground: #e8ecf5;
  --primary: #0095ff;
  --primary-foreground: #ffffff;
  --secondary: #111832;
  --secondary-foreground: #c0cbdf;
  --muted-foreground: #6b7a99;
  --border: #1a2340;
  --gold: #d4a017;
  --gold-light: #f5d060;
  --destructive: #ff4444;

  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: var(--background);
  color: var(--foreground);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 80px; } }

/* Utilities */
.muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.badge.primary { color: var(--primary); }
.badge.gold { color: var(--gold); }

.neon-border {
  border: 1px solid rgba(0, 149, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(0, 149, 255, 0.05), 0 0 15px rgba(0, 149, 255, 0.1);
}
.glow-blue { box-shadow: 0 0 20px rgba(0, 149, 255, 0.3), 0 0 60px rgba(0, 149, 255, 0.1); }
.glow-blue-text { text-shadow: 0 0 20px rgba(0, 180, 255, 0.5), 0 0 40px rgba(0, 149, 255, 0.3); }
.glow-gold { box-shadow: 0 0 20px rgba(212, 160, 23, 0.3), 0 0 60px rgba(212, 160, 23, 0.1); }

.card {
  background: var(--card);
  border-radius: var(--radius);
}
.card-hover { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 149, 255, 0.2), var(--shadow);
}

.separator {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.separator .line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,35,64,1), transparent);
}
.separator .line.primary {
  background: linear-gradient(90deg, transparent, rgba(0,149,255,.22), transparent);
}
.separator .line.gold {
  background: linear-gradient(90deg, transparent, rgba(212,160,23,.22), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { filter: brightness(.96); }
.btn-outline {
  background: transparent;
  border-color: rgba(0,149,255,.30);
  color: var(--primary);
}
.btn-outline:hover { background: rgba(0,149,255,.10); }
.btn-gold {
  background: rgba(212,160,23,.10);
  color: var(--gold);
  border-color: rgba(212,160,23,.28);
}
.btn-gold:hover { background: rgba(212,160,23,.18); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7,11,24,.80);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,35,64,1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,149,255,.10);
}
.logo-mark span {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text .name {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 18px;
}
.logo-text .sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
}

.nav-desktop {
  display: none;
  gap: 6px;
}
.nav-desktop a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--secondary-foreground);
}
.nav-desktop a:hover {
  color: var(--primary);
  background: rgba(0,149,255,.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
}
.lang:hover { color: var(--foreground); }

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(26,35,64,1);
  background: rgba(13,18,36,.6);
  color: var(--foreground);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(26,35,64,1);
  background: rgba(13,18,36,.95);
  backdrop-filter: blur(16px);
}
.mobile-panel.open { display: block; }
.mobile-panel nav {
  display: grid;
  gap: 6px;
  padding: 12px 0 16px;
}
.mobile-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--secondary-foreground);
}
.mobile-panel a:hover { background: rgba(0,149,255,.05); color: var(--primary); }
.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(26,35,64,1);
}

@media (min-width: 640px) {
  .lang { display: inline-flex; }
  .btn-login { display: inline-flex; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .mobile-panel { display: none !important; }
}

/* Main / hero */
main { padding-top: 60px; }

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
@media (min-width: 640px) { .hero { height: 560px; } }
@media (min-width: 1024px) { .hero { height: 620px; } }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,11,24,.95), rgba(7,11,24,.60), transparent),
    linear-gradient(180deg, rgba(7,11,24,1), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-text {
  max-width: 520px;
}
.hero-title {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 640px) { .hero-title { font-size: 40px; } }
@media (min-width: 1024px) { .hero-title { font-size: 50px; } }
.hero-sub {
  margin-top: 14px;
  max-width: 460px;
  color: var(--secondary-foreground);
  line-height: 1.6;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(13,18,36,.60);
  border: 1px solid rgba(26,35,64,1);
  color: var(--foreground);
  cursor: pointer;
}
.hero-arrow:hover { border-color: rgba(0,149,255,.5); }
.hero-arrow.left { left: 16px; }
.hero-arrow.right { right: 16px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(107,122,153,.30);
  border: none;
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}
.hero-dot:hover { background: rgba(107,122,153,.55); }
.hero-dot.active {
  width: 34px;
  background: var(--primary);
}

/* Sections */
.section {
  padding: 64px 0;
}
.section.sm { padding: 40px 0; }
.section .section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section .section-head h2 {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 26px;
  margin: 10px 0 0;
}
@media (min-width: 640px) { .section .section-head h2 { font-size: 34px; } }
@media (min-width: 1024px) { .section .section-head h2 { font-size: 40px; } }
.section .section-head p {
  margin: 12px auto 0;
  max-width: 680px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 18px;
}

/* Promo */
.promo-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .promo-grid { grid-template-columns: repeat(3, 1fr); } }
.promo-card { overflow: hidden; }
.promo-media { position: relative; height: 190px; overflow: hidden; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.promo-card:hover .promo-media img { transform: scale(1.08); }
.promo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(13,18,36,.92));
}
.promo-body { padding: 18px; position: relative; }
.promo-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,149,255,.10);
}

/* Stats */
.stats-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--primary);
}

/* Bonus cards */
.bonus-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(4, 1fr); } }
.bonus-card { padding: 22px; position: relative; overflow: hidden; }
.bonus-card .value {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 6px;
}
.bonus-card.primary .value { color: var(--primary); }
.bonus-card.gold .value { color: var(--gold); }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 149, 255, 0.10), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  opacity: 0;
  transition: opacity .25s ease;
}
.bonus-card:hover .shimmer,
.tournament-card:hover .shimmer { opacity: 1; }

/* Games */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  background: var(--secondary);
  color: var(--secondary-foreground);
}
.tab:hover { filter: brightness(1.05); }
.tab.active {
  background: var(--primary);
  color: var(--primary-foreground);
}
.tab small {
  font-weight: 700;
  color: rgba(232,236,245,.7);
}

.games-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(4, 1fr); } }
.game-card { overflow: hidden; cursor: pointer; }
.game-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.game-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.game-card:hover .game-media img { transform: scale(1.08); }
.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0);
  transition: background .2s ease;
}
.game-card:hover .play-overlay { background: rgba(0,0,0,.40); }
.play-badge {
  opacity: 0;
  transition: opacity .2s ease;
  font-size: 12px;
  font-weight: 800;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 10px 14px;
  border-radius: 12px;
}
.game-card:hover .play-badge { opacity: 1; }
.game-body { padding: 12px; background: var(--card); }
.game-name { font-weight: 800; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-prov { font-size: 12px; color: var(--muted-foreground); margin-top: 3px; }

/* Tournaments */
.tournament-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .tournament-grid { grid-template-columns: repeat(2, 1fr); } }
.tournament-card { padding: 22px; position: relative; overflow: hidden; }
.hot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: var(--destructive);
  background: rgba(255,68,68,.10);
}
.t-prize {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--gold);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 12px;
}

/* VIP */
.levels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.level {
  width: 150px;
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.level::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background: radial-gradient(circle at 20% 20%, rgba(212,160,23,.5), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(0,149,255,.45), transparent 55%);
}
.level .inner { position: relative; z-index: 1; }
.level .cash {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--gold);
}
.level .pts { font-size: 11px; color: var(--muted-foreground); margin-top: 6px; }
.vip-perks { grid-template-columns: 1fr; }
@media (min-width: 640px) { .vip-perks { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vip-perks { grid-template-columns: repeat(4, 1fr); } }
.vip-perk { padding: 18px; }

/* Payments */
.pay-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .pay-grid { grid-template-columns: repeat(4, 1fr); } }
.pmethods { grid-template-columns: 1fr; }
@media (min-width: 768px) { .pmethods { grid-template-columns: 1fr 1fr; } }
.pill {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid rgba(26,35,64,1);
}

/* Providers */
.providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.provider {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted-foreground);
  cursor: default;
}
.provider:hover { color: var(--primary); border-color: rgba(0,149,255,.40); }

/* FAQ */
.faq {
  max-width: 768px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq details {
  border-radius: var(--radius);
  background: var(--card);
  padding: 0 18px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 900;
  font-size: 14px;
}
.faq summary:hover { color: var(--primary); }
.faq summary::-webkit-details-marker { display: none; }
.faq .answer {
  padding: 0 0 16px;
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 14px;
}

/* Content articles */
.article {
  padding: 24px;
}
@media (min-width: 640px) { .article { padding: 32px; } }
@media (min-width: 1024px) { .article { padding: 40px; } }
.article-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.article h3 {
  margin: 0 0 4px;
  font-family: Orbitron, sans-serif;
  font-weight: 900;
}
.article p {
  margin: 0 0 12px;
  color: var(--secondary-foreground);
  line-height: 1.7;
}
.article p strong { color: var(--foreground); }
.steps { grid-template-columns: 1fr; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: rgba(17,24,50,.50);
  border: 1px solid rgba(26,35,64,.55);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
}
.step .num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: rgba(0,149,255,.20);
}
.step h4 { margin: 0 0 6px; font-size: 14px; }
.step p { margin: 0; font-size: 12px; color: var(--muted-foreground); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(26,35,64,1);
  background: rgba(13,18,36,.50);
}
.footer-cta {
  padding: 40px 0;
}
.footer-banner {
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(90deg, rgba(0,149,255,.10), rgba(13,18,36,1), rgba(212,160,23,.10));
  overflow: hidden;
}
@media (min-width: 640px) { .footer-banner { padding: 44px; } }
.footer-banner h3 {
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  margin: 0 0 8px;
}
.footer-banner p { margin: 0 auto 18px; max-width: 560px; color: var(--muted-foreground); }
.footer-links {
  padding: 40px 0;
  border-top: 1px solid rgba(26,35,64,1);
}
.links-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (min-width: 768px) { .links-grid { grid-template-columns: repeat(4, 1fr); } }
.links-grid h4 { margin: 0 0 12px; font-size: 14px; }
.links-grid a { color: var(--muted-foreground); font-size: 14px; }
.links-grid a:hover { color: var(--primary); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(26,35,64,1);
}
.bottom-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .bottom-row { flex-direction: row; }
}
.small {
  font-size: 10px;
  color: rgba(107,122,153,.60);
  line-height: 1.6;
  text-align: center;
  margin: 14px auto 0;
  max-width: 900px;
}

/* SR-only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
