/* =========================
   TEMPLATE V2 - Cyber Neon Theme
   A modern dark theme with neon accents
=========================== */

/* =========================
   CSS Variables & Design Tokens
=========================== */
:root {
  /* Color Palette - Cyber Neon */
  --primary: #8B5CF6;
  --primary-light: #A78BFA;
  --primary-dark: #6D28D9;
  --secondary: #06B6D4;
  --secondary-light: #22D3EE;
  --accent: #10B981;
  --accent-glow: rgba(16, 185, 129, 0.5);
  --danger: #EF4444;

  /* Background Colors */
  --bg-dark: #0F0F1A;
  --bg-darker: #080810;
  --bg-card: rgba(15, 15, 26, 0.8);
  --bg-glass: rgba(139, 92, 246, 0.08);

  /* Text Colors */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
  --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
  --gradient-dark: linear-gradient(180deg, #0F0F1A 0%, #080810 100%);

  /* Effects */
  --shadow-neon: 0 0 30px rgba(139, 92, 246, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --blur-glass: blur(20px);

  /* Spacing & Sizing */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 16px;
  --border-radius-lg: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* =========================
   Reset & Base Styles
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--gradient-dark);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary-light);
}

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

/* =========================
   Typography
=========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* =========================
   Layout Components
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* =========================
   Header & Navigation
=========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: var(--blur-glass);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  z-index: 1000;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* =========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
  color: white;
}

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

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--bg-dark);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
}

.btn-glow:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* =========================
   Hero Section
=========================== */
.hero {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 26, 0.6) 0%, rgba(8, 8, 16, 0.95) 100%);
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(139, 92, 246, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating elements */
.hero-float {
  position: absolute;
  pointer-events: none;
}

.hero-float-1 {
  top: 20%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-float-2 {
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--secondary);
  border-radius: 50%;
  filter: blur(100px);
}

/* =========================
   Glass Cards
=========================== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
}

/* =========================
   Info Cards Grid
=========================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-glass);
  backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
}

.info-card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.info-card h3 {
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.95rem;
}

/* =========================
   Data Tables
=========================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.data-table th {
  background: rgba(139, 92, 246, 0.15);
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.data-table tbody tr {
  transition: background var(--transition-fast);
}

.data-table tbody tr:hover {
  background: rgba(139, 92, 246, 0.08);
}

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

/* =========================
   Steps / Timeline
=========================== */
.steps-list {
  list-style: none;
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 55px;
  width: 2px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

.step-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* =========================
   Promo Cards
=========================== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.promo-card {
  background: var(--bg-glass);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.promo-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.promo-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.promo-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================
   Game Carousels
=========================== */
.games-carousel {
  position: relative;
  padding: 0 3rem;
}

.games-carousel .swiper-slide {
  width: 200px;
}

.game-thumb {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
}

.game-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Swiper navigation */
.swiper-button-prev,
.swiper-button-next {
  color: var(--primary) !important;
  background: var(--bg-glass);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
}

.swiper-pagination-bullet {
  background: var(--primary) !important;
}

/* =========================
   Providers Grid
=========================== */
.providers-section {
  background: var(--bg-glass);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.providers-grid img {
  width: 100%;
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.providers-grid img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
}

/* =========================
   Payment Methods
=========================== */
.payments-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-logo {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  transition: all var(--transition-normal);
}

.payment-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.payment-logo img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.payment-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =========================
   Benefits Grid
=========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* =========================
   FAQ Accordion
=========================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.faq-item details {
  background: var(--bg-glass);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: background var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform var(--transition-normal);
}

.faq-item details[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: rgba(139, 92, 246, 0.1);
}

.faq-item details>p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
}

/* =========================
   Contact Table
=========================== */
.contact-table {
  width: 100%;
  background: var(--bg-glass);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.contact-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.contact-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 30%;
}

/* =========================
   Footer
=========================== */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  padding: 4rem 0 2rem;
}

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-disclaimer {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 48px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  margin-bottom: 2rem;
}

.trust-badges img {
  height: 36px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.trust-badges img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-secondary);
}

/* =========================
   App Download Buttons
=========================== */
.app-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.app-badge img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  transition: transform var(--transition-normal);
}

.app-badge:hover img {
  transform: scale(1.05);
}

/* =========================
   Troubleshoot List
=========================== */
.troubleshoot-list {
  list-style: none;
  padding: 0;
}

.troubleshoot-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.troubleshoot-list li:last-child {
  border-bottom: none;
}

.troubleshoot-list i {
  color: var(--secondary);
  font-size: 1.25rem;
  width: 30px;
}

/* =========================
   Divider
=========================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  margin: 2rem 0;
}

/* =========================
   Responsive Design
=========================== */
@media (max-width: 1024px) {
  .payments-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .step-item {
    gap: 1rem;
  }

  .step-item::before {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-item:not(:last-child)::after {
    left: 19px;
    top: 45px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Mobile-optimized stacked tables */
  .data-table,
  .contact-table {
    display: block;
  }

  .data-table thead {
    display: none;
  }

  .data-table tbody,
  .data-table tr,
  .contact-table tr {
    display: block;
  }

  .data-table tr {
    margin-bottom: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
  }

  .data-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    text-align: right;
  }

  .data-table td::before {
    content: attr(data-label);
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
  }

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

  .contact-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 8px;
    overflow: hidden;
  }

  .contact-table td {
    width: 100% !important;
    display: block;
  }

  .contact-table td:first-child {
    background: rgba(139, 92, 246, 0.1);
    padding: 0.75rem 1rem;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}



/* =========================
   Utility Classes
=========================== */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}