:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12101a;
  --bg-card: #1a1628;
  --purple-dark: #1e1535;
  --purple-mid: #6b21a8;
  --purple-light: #a855f7;
  --neon-blue: #00d4ff;
  --neon-blue-glow: rgba(0, 212, 255, 0.3);
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(107, 33, 168, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* HEADER */
header {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.1);
}

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-align: center;
  letter-spacing: 0.2px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0f;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
  color: #0a0a0f;
}

.btn-blue {
  background: linear-gradient(135deg, #0ea5e9, var(--neon-blue));
  color: #0a0a0f;
}

.btn-blue:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px var(--neon-blue-glow);
  color: #0a0a0f;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
}

.btn-outline:hover {
  background: var(--neon-blue);
  color: #0a0a0f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--neon-blue-glow);
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(107,33,168,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0,212,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at center, #1e1535 0%, var(--bg-primary) 70%);
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b21a8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  letter-spacing: -1px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero big buttons */
.btn-hero-play {
  display: inline-block;
  padding: 20px 52px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 50%, var(--gold-light) 100%);
  color: #0a0a0f;
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.35);
  letter-spacing: 0.3px;
}

.btn-hero-play:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.55);
  color: #0a0a0f;
}

.btn-hero-bonus {
  display: inline-block;
  padding: 20px 52px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2.5px solid var(--neon-blue);
  text-align: center;
  background: rgba(0, 212, 255, 0.08);
  color: var(--neon-blue);
  letter-spacing: 0.3px;
}

.btn-hero-bonus:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--neon-blue);
  color: #0a0a0f;
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.45);
}

/* SECTIONS */
section {
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.section-title h2 span {
  color: var(--neon-blue);
}

.section-title p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--purple-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* GAME CARDS */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 33, 168, 0.3);
}

.game-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--purple-dark), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.game-info {
  padding: 16px;
}

.game-info h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.game-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.game-tag {
  display: inline-block;
  background: rgba(107, 33, 168, 0.3);
  color: var(--purple-light);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* BONUS BANNER */
.bonus-banner {
  background: linear-gradient(135deg, var(--purple-dark), #0f172a);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 60%);
}

.bonus-amount {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  display: block;
  margin-bottom: 10px;
}

.bonus-banner h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.bonus-banner p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 30px;
}

/* PROMO CODE */
.promo-box {
  background: var(--bg-card);
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.promo-box:hover {
  background: rgba(245, 158, 11, 0.05);
}

.promo-code {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
  font-family: monospace;
  display: block;
  margin: 10px 0;
}

.promo-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--neon-blue), var(--purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a0a0f;
  margin: 0 auto 15px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(0, 212, 255, 0.05);
}

.faq-question .arrow {
  transition: transform 0.3s;
  color: var(--neon-blue);
  font-size: 1.2rem;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* TABLE */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
}

.data-table th {
  background: var(--purple-dark);
  color: var(--neon-blue);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(0, 212, 255, 0.03);
  color: var(--text-primary);
}

/* FORM */
.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px 40px;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--purple-dark) 0%, var(--bg-primary) 70%);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff, var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* SEO TEXT */
.seo-text {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 35px 40px;
  margin-top: 50px;
}

.seo-text h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.seo-text p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.seo-text ul {
  list-style: none;
  margin-bottom: 15px;
}

.seo-text ul li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.seo-text ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-blue);
}

/* BREADCRUMB */
.breadcrumb {
  padding: 12px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb-inner a {
  color: var(--text-muted);
}

.breadcrumb-inner a:hover {
  color: var(--neon-blue);
}

.breadcrumb-inner span {
  color: var(--text-muted);
}

/* FOOTER */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 50px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--neon-blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-logo:hover img {
  opacity: 1;
}

/* MOBILE MENU */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 20px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* HIGHLIGHT */
.highlight {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(107,33,168,0.1));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  padding: 25px;
}

.tag-blue {
  background: rgba(0,212,255,0.15);
  color: var(--neon-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
}

.tag-gold {
  background: rgba(245,158,11,0.15);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
}

.tag-green {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
}

/* TWO COLS */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.two-col-img {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* FILTER TABS */
.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--bg-card);
}

.filter-tab.active,
.filter-tab:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

/* PROVIDER TAGS */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.provider-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: all 0.3s;
}

.provider-tag:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}

/* CONTACT CARDS */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 50px 15px; }
  .hero { padding: 60px 15px; min-height: auto; }
  .bonus-banner { padding: 30px 20px; }
  .form-box { padding: 25px 20px; }
  .seo-text { padding: 25px 20px; }
  .hero-stats { gap: 25px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
