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

* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #1a1a2e;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #4b8df7, #2e5ed9);
}

.gradient-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.gradient-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

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

.pulse-slow {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.animate-counter {
  animation: countUp 2s ease-out;
}

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

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.text-glow {
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

.bg-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: particleFloat 6s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.btn-gaming {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  text-align: center;
}

.btn-gaming:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.btn-gaming:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-gaming:hover:before {
  left: 100%;
}

.game-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.game-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.game-card:hover:before {
  transform: scaleX(1);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  margin: 0 auto 16px auto;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
}

.navbar-blur {
  backdrop-filter: blur(20px);
  background: rgba(26, 26, 46, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
  z-index: 9999;
  transition: width 0.3s ease;
}

#stats {
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
      45deg,
      rgba(59, 130, 246, 0.05),
      rgba(59, 130, 246, 0.05) 1px,
      transparent 1px,
      transparent 35px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(59, 130, 246, 0.05),
      rgba(59, 130, 246, 0.05) 1px,
      transparent 1px,
      transparent 35px
    );
  z-index: 0;
  animation: moveLines 40s linear infinite;
}

#stats > div {
  position: relative;
  z-index: 1;
}

@keyframes moveLines {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(140px, 140px);
  }
}

.provider-logo {
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.6);
}

.provider-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* FAQ Styles */
details > summary {
  list-style: none; /* Hide default marker in Firefox */
}
details > summary::-webkit-details-marker {
  display: none; /* Hide default marker in Chrome/Safari */
}
details .faq-icon {
  transition: transform 0.3s ease-in-out;
}
details[open] summary .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  #mirror-popup {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    max-width: none;
    width: auto;
  }
}

@media (max-width: 768px) {
  .stats-number {
    font-size: 1.8rem;
  }

  .game-card {
    padding: 16px;
  }
}
.seo-text-block h1 {
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}
.seo-text-block h2 {
  font-size: 2rem; /* 32px */
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}
.seo-text-block h3 {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #e5e7eb; /* gray-200 */
}
.seo-text-block p,
.seo-text-block li {
  font-size: 1.125rem; /* 18px */
  line-height: 1.7;
  color: #d1d5db; /* gray-300 */
  margin-bottom: 1rem;
}
.seo-text-block strong {
  color: #fff;
  font-weight: 600;
}
.seo-text-block em {
  color: #93c5fd; /* blue-300 */
  font-style: normal;
}
.seo-text-block b {
  color: #fff;
  font-weight: 600;
}
.seo-text-block .note {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6; /* blue-500 */
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}
.seo-text-block .note p {
  margin-bottom: 0;
  color: #e5e7eb; /* gray-200 */
}
.seo-text-block .kbd {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 500;
  color: #60a5fa; /* blue-400 */
}
.seo-text-block .sep {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 3rem 0;
}
.seo-text-block .grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.seo-text-block .card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.seo-text-block .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
}
.seo-text-block .card h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #fff;
}
.seo-text-block .card p,
.seo-text-block .card li {
  font-size: 1rem;
  color: #d1d5db; /* gray-300 */
  margin-bottom: 0;
}
.seo-text-block .card ul {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .seo-text-block .grid--three-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .seo-text-block .grid--two-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.seo-text-block ol,
.seo-text-block ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.seo-text-block ol li,
.seo-text-block ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.seo-text-block ul li::marker {
  color: #3b82f6;
  font-size: 1.2em;
}
.seo-text-block .tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af; /* gray-400 */
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin: 0.25rem;
  transition: all 0.2s ease;
}
.seo-text-block .tag:hover {
  background-color: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  color: #fff;
}
