/* Neon Glow Effects */
.neon-text-cyan {
  color: #00ffff;
  text-shadow: 0 0 0.625rem rgba(0, 255, 255, 0.7),
               0 0 1.25rem rgba(0, 255, 255, 0.5),
               0 0 1.875rem rgba(0, 255, 255, 0.3);
}

.neon-text-magenta {
  color: #ff00ff;
  text-shadow: 0 0 0.625rem rgba(255, 0, 255, 0.7),
               0 0 1.25rem rgba(255, 0, 255, 0.5),
               0 0 1.875rem rgba(255, 0, 255, 0.3);
}

.neon-text-purple {
  color: #9d00ff;
  text-shadow: 0 0 0.625rem rgba(157, 0, 255, 0.7),
               0 0 1.25rem rgba(157, 0, 255, 0.5),
               0 0 1.875rem rgba(157, 0, 255, 0.3);
}

.neon-text-glow {
  color: #00ffff;
  text-shadow: 0 0 0.625rem rgba(0, 255, 255, 0.8),
               0 0 1.25rem rgba(255, 0, 255, 0.6),
               0 0 2.5rem rgba(0, 255, 255, 0.4),
               0 0 3.75rem rgba(255, 0, 255, 0.2);
  animation: textPulse 2s ease-in-out infinite;
}

.neon-glow {
  box-shadow: 0 0 0.3125rem rgba(0, 255, 255, 0.3),
              0 0 0.625rem rgba(0, 255, 255, 0.2);
}

.neon-box-glow {
  box-shadow: 0 0 0.9375rem rgba(0, 255, 255, 0.4),
              0 0 1.875rem rgba(255, 0, 255, 0.3),
              inset 0 0 0.9375rem rgba(0, 255, 255, 0.1);
}

/* Navigation Links */
.nav-link {
  position: relative;
  font-weight: 600;
  transition: color 0.3s ease;
  color: #e5e7eb;
}

.nav-link:hover {
  color: #00ffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: linear-gradient(90deg, #00ffff, #ff00ff);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn-neon-primary {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #00ffff, #0080ff);
  color: #000;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0.9375rem rgba(0, 255, 255, 0.5);
  display: inline-block;
  text-decoration: none;
}

.btn-neon-primary:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0 1.875rem rgba(0, 255, 255, 0.8);
  background: linear-gradient(135deg, #00ffff, #00d4ff);
}

.btn-neon-secondary {
  padding: 0.75rem 2rem;
  background: transparent;
  color: #00ffff;
  font-weight: 700;
  border: 0.125rem solid #00ffff;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-neon-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 0.9375rem rgba(0, 255, 255, 0.5);
  transform: translateY(-0.125rem);
}

.btn-neon-small {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #ff00ff, #9d00ff);
  color: #fff;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0.625rem rgba(255, 0, 255, 0.4);
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-neon-small:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0 1.25rem rgba(255, 0, 255, 0.7);
}

/* Hero Pattern */
.hero-pattern {
  background-image: 
    linear-gradient(30deg, #00ffff 12%, transparent 12.5%, transparent 87%, #00ffff 87.5%, #00ffff),
    linear-gradient(150deg, #00ffff 12%, transparent 12.5%, transparent 87%, #00ffff 87.5%, #00ffff),
    linear-gradient(30deg, #ff00ff 12%, transparent 12.5%, transparent 87%, #ff00ff 87.5%, #ff00ff),
    linear-gradient(150deg, #ff00ff 12%, transparent 12.5%, transparent 87%, #ff00ff 87.5%, #ff00ff);
  background-size: 5rem 5rem;
  background-position: 0 0, 0 0, 2.5rem 2.5rem, 2.5rem 2.5rem;
}

/* Animations */
@keyframes textPulse {
  0%, 100% {
    text-shadow: 0 0 0.625rem rgba(0, 255, 255, 0.8),
                 0 0 1.25rem rgba(255, 0, 255, 0.6),
                 0 0 2.5rem rgba(0, 255, 255, 0.4),
                 0 0 3.75rem rgba(255, 0, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 1.25rem rgba(0, 255, 255, 1),
                 0 0 2.5rem rgba(255, 0, 255, 0.8),
                 0 0 3.75rem rgba(0, 255, 255, 0.6),
                 0 0 5rem rgba(255, 0, 255, 0.4);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0.9375rem rgba(0, 255, 255, 0.4),
                0 0 1.875rem rgba(255, 0, 255, 0.3),
                inset 0 0 0.9375rem rgba(0, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 1.875rem rgba(0, 255, 255, 0.6),
                0 0 3.75rem rgba(255, 0, 255, 0.5),
                inset 0 0 1.875rem rgba(0, 255, 255, 0.2);
  }
}

.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Parallax */
.parallax-bg {
  transition: transform 0.5s ease-out;
}

/* Marquee */
.marquee-container {
  position: relative;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
}

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

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

/* Duplicate items for seamless loop */
.marquee-content::after {
  content: '';
  flex: 0 0 auto;
}

/* Game Cards */
.game-card {
  flex: 0 0 auto;
  width: clamp(15rem, 20vw, 18.75rem);
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
  border: 0.0625rem solid rgba(0, 255, 255, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-0.625rem);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 1.875rem rgba(0, 255, 255, 0.3);
}

/* Review Blocks */
.review-block {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.03), rgba(255, 0, 255, 0.03));
  border: 0.0625rem solid rgba(0, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  transition: all 0.3s ease;
}

.review-block:hover {
  border-color: rgba(255, 0, 255, 0.4);
  box-shadow: 0 0 1.875rem rgba(255, 0, 255, 0.2);
}

/* Provider Badges */
.provider-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(0, 128, 255, 0.2));
  border: 0.0625rem solid rgba(157, 0, 255, 0.3);
  border-radius: 1.25rem;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  color: #e5e7eb;
  transition: all 0.3s ease;
}

.provider-badge:hover {
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.3), rgba(0, 128, 255, 0.3));
  border-color: rgba(157, 0, 255, 0.5);
  transform: translateY(-0.125rem);
}

/* Promo Cards */
.promo-card {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
  border: 0.0625rem solid rgba(0, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  transition: all 0.3s ease;
}

.promo-card:hover {
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 1.875rem rgba(0, 255, 255, 0.3);
  transform: translateY(-0.3125rem);
}

/* FAQ Items */
.faq-item {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.03), rgba(157, 0, 255, 0.03));
  border: 0.0625rem solid rgba(255, 0, 255, 0.2);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 0, 255, 0.4);
}

.faq-item[open] {
  border-color: rgba(255, 0, 255, 0.5);
  box-shadow: 0 0 1.25rem rgba(255, 0, 255, 0.2);
}

.faq-item summary {
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  color: #ff00ff;
  transition: transform 0.3s ease;
}

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

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  min-width: 37.5rem;
}

/* Prose Styling */
.prose {
  max-width: 65ch;
  color: #e5e7eb;
}

.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3;
  color: #00ffff;
  text-shadow: 0 0 0.625rem rgba(0, 255, 255, 0.5);
}

.prose h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
  color: #ff00ff;
  text-shadow: 0 0 0.5rem rgba(255, 0, 255, 0.5);
}

.prose h4 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #9d00ff;
}

.prose p {
  margin-top: 0;
  margin-bottom: 1.25em;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #d1d5db;
}

.prose a {
  color: #00ffff;
  text-decoration: underline;
  text-decoration-color: rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.prose a:hover {
  color: #ff00ff;
  text-decoration-color: rgba(255, 0, 255, 0.5);
  text-shadow: 0 0 0.5rem rgba(255, 0, 255, 0.5);
}

.prose ul,
.prose ol {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.6;
  color: #d1d5db;
}

.prose ul > li {
  position: relative;
  padding-left: 0.375em;
}

.prose ul > li::marker {
  color: #00ffff;
}

.prose ol > li::marker {
  color: #ff00ff;
  font-weight: 600;
}

.prose strong {
  color: #f9fafb;
  font-weight: 700;
}

.prose em {
  font-style: italic;
  color: #e5e7eb;
}

.prose blockquote {
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1.5em;
  border-left: 0.25rem solid #00ffff;
  font-style: italic;
  color: #9ca3af;
  background: rgba(0, 255, 255, 0.05);
  padding: 1em 1.5em;
  border-radius: 0 0.5rem 0.5rem 0;
}

.prose table {
  width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
  border-collapse: collapse;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  overflow-x: auto;
  display: block;
}

.prose thead {
  border-bottom: 0.125rem solid rgba(0, 255, 255, 0.3);
}

.prose thead th {
  padding: 0.875em 1em;
  font-weight: 700;
  text-align: left;
  color: #00ffff;
  background: rgba(0, 255, 255, 0.05);
}

.prose tbody tr {
  border-bottom: 0.0625rem solid rgba(156, 163, 175, 0.2);
}

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

.prose tbody td {
  padding: 0.875em 1em;
  color: #d1d5db;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-top: 2em;
  margin-bottom: 2em;
  border: 0.0625rem solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 1.875rem rgba(0, 255, 255, 0.2);
}

.prose code {
  color: #ff00ff;
  background: rgba(255, 0, 255, 0.1);
  padding: 0.125em 0.375em;
  border-radius: 0.25rem;
  font-size: 0.875em;
  font-family: monospace;
}

.prose pre {
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5em;
  border-radius: 0.5rem;
  overflow-x: auto;
  border: 0.0625rem solid rgba(0, 255, 255, 0.2);
  margin-top: 1.7em;
  margin-bottom: 1.7em;
}

.prose pre code {
  background: none;
  padding: 0;
  color: #00ffff;
}

.prose hr {
  margin-top: 3em;
  margin-bottom: 3em;
  border: 0;
  border-top: 0.0625rem solid rgba(0, 255, 255, 0.2);
}

/* Burger Menu Active State */
#burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

#burger.active span:nth-child(2) {
  opacity: 0;
}

#burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .neon-text-glow {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }
  
  .marquee-content {
    animation-duration: 20s;
  }
}
