@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Inter:wght@300;400;600&display=swap');

:root {
  --cyan: #00e5ff;
  --violet: #9c27b0;
  --violet-light: #ce93d8;
  --dark-bg: #080818;
  --dark-card: #0d0d2b;
  --dark-card2: #12123a;
  --text-main: #e8e8ff;
  --text-muted: #a0a0c8;
  --glow-cyan: 0 0 16px rgba(0,229,255,0.5);
  --glow-violet: 0 0 16px rgba(156,39,176,0.5);
}

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

body {
  background-color: var(--dark-bg);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

@keyframes neonPulse {
  0%,100% { text-shadow: 0 0 8px var(--cyan), 0 0 20px var(--cyan); }
  50% { text-shadow: 0 0 20px var(--cyan), 0 0 40px var(--violet); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes floatUp {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes lightTrail {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}

.neon-text {
  animation: neonPulse 2.5s ease-in-out infinite;
  color: var(--cyan);
}

.float-anim {
  animation: floatUp 3s ease-in-out infinite;
}

.gradient-bg {
  background: linear-gradient(135deg, #080818 0%, #0d0d2b 50%, #12083a 100%);
}

.gradient-border {
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1px rgba(0,229,255,0.3), 0 0 20px rgba(0,229,255,0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #080818;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--glow-cyan);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,229,255,0.7);
  color: #080818;
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--cyan);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(0,229,255,0.1);
  box-shadow: var(--glow-cyan);
  color: var(--cyan);
}

.card {
  background: var(--dark-card);
  border-radius: 1rem;
  border: 1px solid rgba(0,229,255,0.15);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 30px rgba(0,229,255,0.1);
  transform: translateY(-3px);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* PROSE STYLES */
.prose {
  color: var(--text-main);
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.8;
}

.prose h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--cyan);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,229,255,0.2);
  padding-bottom: 0.4rem;
}

.prose h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--violet-light);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.prose a {
  color: var(--cyan);
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: var(--violet-light);
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.prose li {
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.prose blockquote {
  border-left: 4px solid var(--cyan);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 1.5rem 0;
  background: rgba(0,229,255,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(0,229,255,0.2);
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.prose table th {
  background: rgba(0,229,255,0.15);
  color: var(--cyan);
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0,229,255,0.2);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
}

.prose table td {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0,229,255,0.1);
  color: var(--text-main);
  background: var(--dark-card2);
}

.prose table tr:hover td {
  background: rgba(0,229,255,0.05);
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,24,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,229,255,0.2);
}

.hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  #mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none !important;
  }

  #burger-btn {
    display: block !important;
  }
}

.mobile-menu {
  background: #080818;
  border-top: 1px solid rgba(0,229,255,0.2);
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--text-main);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,229,255,0.08);
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover {
  color: var(--cyan);
  background: rgba(0,229,255,0.06);
  text-decoration: none;
}

.mobile-menu a.mobile-menu-cta {
  margin: 1rem 1.5rem 1.25rem;
  text-align: center;
  border-bottom: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
}

.mobile-menu a.mobile-menu-cta:hover {
  color: #080818;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,229,255,0.7);
}

/* MARQUEE */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* HERO */
.hero-section {
  min-height: 90vh;
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,24,0.88) 0%, rgba(12,4,40,0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeInUp 0.9s ease both;
}

/* PAYMENT TABLE */
.pay-table th {
  background: rgba(0,229,255,0.12);
  color: var(--cyan);
  padding: 0.75rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(0,229,255,0.18);
}

.pay-table td {
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(0,229,255,0.1);
  color: var(--text-main);
  background: var(--dark-card2);
}

.pay-table tr:hover td {
  background: rgba(0,229,255,0.05);
}

.pay-table {
  width: 100%;
  border-collapse: collapse;
}

/* WORD CLOUD */
.word-cloud span {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.5vw, 1.1rem);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--text-main);
  background: rgba(0,229,255,0.07);
  transition: all 0.2s;
  cursor: default;
}

.word-cloud span:hover {
  background: rgba(0,229,255,0.18);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

/* STEP BADGE */
.step-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #080818;
  margin: 0 auto 1rem;
  box-shadow: var(--glow-cyan);
  flex-shrink: 0;
}

/* 18+ badge */
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--violet-light);
  color: var(--violet-light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}

/* GAME CARD */
.game-card {
  min-width: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid rgba(0,229,255,0.15);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.game-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

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

/* PROMO CARD */
.promo-card {
  background: var(--dark-card);
  border: 1px solid rgba(156,39,176,0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.promo-card:hover {
  border-color: var(--violet);
  box-shadow: var(--glow-violet);
  transform: translateY(-3px);
}

/* FAQ */
.faq-item {
  background: var(--dark-card);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cyan);
  user-select: none;
}

.faq-answer {
  padding: 0 1.5rem;
  color: var(--text-main);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.97rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

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

.faq-arrow {
  transition: transform 0.3s ease;
  color: var(--violet-light);
}

/* REVIEW BLOCKS */
.review-block {
  background: var(--dark-card);
  border: 1px solid rgba(0,229,255,0.13);
  border-radius: 1rem;
  padding: 1.75rem;
}

/* CONTAINER */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-pad {
  padding: 4rem 0;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }
