/* ===== Voldena - Cyberpunk Gaming Theme ===== */

:root {
  /* Neon Colors */
  --neon-blue: #00f0ff;
  --neon-purple: #bf00ff;
  --neon-pink: #ff00a0;
  --neon-green: #00ff88;
  --gold: #ffd700;

  /* Base Colors */
  --bg-dark: #0a0a0f;
  --bg-card: rgba(15, 15, 25, 0.8);
  --bg-card-hover: rgba(20, 20, 35, 0.9);

  /* Text */
  --text: #ffffff;
  --text-dim: #8888aa;
  --text-muted: #555566;

  /* Borders */
  --border: rgba(0, 240, 255, 0.1);
  --border-hover: rgba(0, 240, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  /* Forces scrollbar to prevent layout shift */
}

/* ===== Custom Neon Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
  border-left: 1px solid rgba(0, 240, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--neon-purple), var(--neon-blue));
  box-shadow: 0 0 15px rgba(191, 0, 255, 0.7);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--neon-blue) var(--bg-dark);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Custom Neon Cursor ===== */
* {
  cursor: url('/assets/cursors/normal.png') 0 0, auto !important;
}

a,
button,
.nav-btn,
.game-card,
.pricing-card,
.faq-item,
.faq-q,
[role="button"],
[onclick],
.clickable,
.logo,
.hamburger,
.social-link,
.social-link-footer,
.music-toggle,
.pagination-btn-modern,
.search-reset-btn,
.gallery-card,
input[type="submit"],
input[type="button"],
[style*="cursor: pointer"],
[style*="cursor:pointer"] {
  cursor: url('/assets/cursors/pointer.png') 6 0, pointer !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
textarea,
[contenteditable="true"] {
  cursor: url('/assets/cursors/text.png') 12 12, text !important;
}

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

/* Grid Background */
.grid-background {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Glow Effects */
.glow-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 240, 255, 0.08);
  top: -200px;
  right: -100px;
  animation: pulse-glow 8s ease-in-out infinite;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(191, 0, 255, 0.06);
  bottom: -200px;
  left: -100px;
  animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* ===== Music Toggle Button ===== */
.music-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s;
}

.music-toggle:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--neon-blue);
  transform: scale(1.1);
}

.music-toggle i {
  font-size: 20px;
  color: var(--neon-blue);
}

.music-toggle.playing {
  background: var(--neon-blue);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.music-toggle.playing i {
  color: var(--bg-dark);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO - LARGER */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
  margin-left: -8px;
}

.logo-tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 2px;
  padding-left: 2px;
}

.nav-center {
  display: flex;
  gap: 40px;
}

.nav-center a {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  transition: all 0.3s;
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--neon-blue);
}

.nav-center a:hover {
  color: var(--text);
}

.nav-center a:hover::after {
  width: 100%;
  box-shadow: 0 0 15px var(--neon-blue);
}

.nav-center a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.nav-btn {
  position: relative;
  padding: 12px 28px;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: var(--neon-blue);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
  0% {
    transform: translateX(-100%);
  }

  50%,
  100% {
    transform: translateX(100%);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--neon-blue);
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-center {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-cta {
  margin-top: 8px;
  padding: 14px !important;
  text-align: center;
  background: var(--neon-blue);
  color: var(--bg-dark) !important;
  border: none !important;
}

/* Hero styles moved to bottom with video background config */

/* Hero Container - Must be above video */
.hero-container {
  max-width: 900px;
  position: relative;
  z-index: 10;
  /* Higher than overlay (z-index: 1) */
  text-align: center;
}

/* Bottom gradient transition for video */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  z-index: 5;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--neon-blue);
  margin-bottom: 32px;
}

.hero-badge i {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-4 {
  display: block;
  color: var(--text);
}

.hero-title .line-3 {
  display: block;
}

.neon-text {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: neon-flicker 3s infinite;
}

@keyframes neon-flicker {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }
}

.hero-desc {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: var(--neon-blue);
  border: none;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.btn-neon:hover {
  background: #fff;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
  transform: translateY(-2px);
}

.btn-neon.large {
  padding: 20px 48px;
  font-size: 15px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-hover);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--neon-blue);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--neon-blue);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.stat-txt {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  /* Brighter than text-muted for better readability */
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: bounce 2s infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-dim);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--neon-blue);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

.scroll-indicator span {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ===== Sections ===== */
section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-box:hover {
  border-color: var(--neon-blue);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: var(--neon-blue);
}

.feature-box h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ===== Games ===== */
.games {
  background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.02), transparent);
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.games-grid .game-card.large {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .games-grid .game-card.large {
    grid-column: span 1;
  }
}

.game-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.game-card:hover {
  border-color: var(--neon-blue);
  transform: translateY(-4px);
}

.game-card.large {
  grid-column: span 2;
  padding: 48px;
}

@media (max-width: 768px) {
  .game-card.large {
    grid-column: span 1;
  }
}

.game-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.05));
  pointer-events: none;
}

.game-bg.green {
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05));
}

.game-bg.purple {
  background: linear-gradient(90deg, transparent, rgba(191, 0, 255, 0.05));
}

.game-content {
  position: relative;
  z-index: 1;
}

.game-content i {
  font-size: 32px;
  color: var(--neon-blue);
  margin-bottom: 16px;
}

.game-card.large .game-content i {
  font-size: 40px;
}

.game-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.game-card.large .game-content h3 {
  font-size: 22px;
}

.game-content p {
  font-size: 14px;
  color: var(--text-dim);
}

.game-count {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 240, 255, 0.1);
}

.game-arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.3s;
}

.game-card:hover .game-arrow {
  background: var(--neon-blue);
}

.game-arrow i {
  color: var(--neon-blue);
  transition: all 0.3s;
}

.game-card:hover .game-arrow i {
  color: var(--bg-dark);
  transform: translateX(4px);
}

.img-not-found-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20px);
  width: 100%;
  text-align: center;
  color: var(--text-dim);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--neon-blue);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.05), var(--bg-card));
}

.price-card.ultimate {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05), var(--bg-card));
}

.featured-badge,
.ultimate-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bg-dark);
}

.featured-badge {
  background: var(--neon-blue);
}

.ultimate-badge {
  background: var(--gold);
}

.price-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.price-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-amount .currency {
  font-size: 24px;
  vertical-align: top;
}

.price-amount .period {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

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

.price-list li i {
  font-size: 10px;
}

.price-list li i.fa-check {
  color: var(--neon-green);
}

.price-list li i.fa-times {
  color: var(--text-muted);
}

.price-list li i.fa-star {
  color: var(--gold);
}

.price-list li.off {
  color: var(--text-muted);
}

.price-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.price-btn:hover {
  border-color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.1);
}

.price-btn.neon {
  background: var(--neon-blue);
  color: var(--bg-dark);
  border-color: transparent;
}

.price-btn.neon:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.price-btn.gold {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: transparent;
}

.price-btn.gold:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(180deg, transparent, rgba(191, 0, 255, 0.02), transparent);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.active {
  border-color: var(--neon-blue);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-q i {
  font-size: 14px;
  color: var(--neon-blue);
  transition: transform 0.3s;
}

.faq-item.active .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  display: none;
}

.faq-item.active .faq-a {
  max-height: 200px;
  display: block;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.05), transparent);
  pointer-events: none;
}

.cta-box h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, rgba(5, 5, 15, 0.9), rgba(0, 0, 5, 0.98));
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.5));
}

.footer-brand .logo-name {
  font-size: 22px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  padding: 8px 0;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.footer-links a i {
  font-size: 16px;
  width: 20px;
  color: var(--neon-blue);
}

/* Social Links - Premium Style */
.footer-links .social-links-footer {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.footer-links .social-link-footer {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 20, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--neon-blue);
  font-size: 16px;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.footer-links .social-link-footer i {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: normal;
  /* Changed from 0 to normal to fix alignment */
  text-align: center;
}

.footer-links .social-link-footer:hover {
  border-color: var(--neon-blue);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Discord specific */
.footer-links .social-link-footer.discord:hover {
  background: #5865F2;
  border-color: #5865F2;
  box-shadow: 0 5px 20px rgba(88, 101, 242, 0.5);
}

/* Instagram specific */
.footer-links .social-link-footer.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  box-shadow: 0 5px 20px rgba(220, 39, 67, 0.5);
}

/* YouTube specific */
.footer-links .social-link-footer.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

/* TikTok specific */
.footer-links .social-link-footer.tiktok:hover {
  background: #000;
  border-color: #00f2ea;
  box-shadow: 0 5px 20px rgba(0, 242, 234, 0.5);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-dim);
  font-size: 13px;
  transition: color 0.3s;
}

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 60px;
  z-index: 1;
  overflow: hidden;
  /* Ensure video doesn't spill out */
}

/* Background Video */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.7);
  /* Dark overlay for readability */
  z-index: 1;
}

.hero-container {
  max-width: 900px;
  position: relative;
  z-index: 2;
  /* Ensure content is above video */
}

/* ===== Reference Background Video Styles ===== */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 2.5s ease-in-out;
  opacity: 0;

  /* Filters */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: brightness(1.05) contrast(1.1) saturate(1.15);
  -webkit-filter: brightness(1.05) contrast(1.1) saturate(1.15);
  will-change: opacity, transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-bg-video.hero-video-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.4);
  /* Reduced from 0.7 to 0.4 for brighter video */
  z-index: 1;
}

/* ===== Custom Modern Cursor ===== */
body {
  cursor: default;
  /* Fallback */
}

/* Hide default cursor on interactive elements to use custom one if implemented via JS, 
   but for CSS-only solution we'll style the cursor property */
a,
button,
.clickable,
input,
textarea,
select {
  cursor: pointer;
}

/* Custom Cursor Implementation */
/* Simple CSS Cursor */
html {
  cursor: url('/assets/cursors/normal.png') 0 0, auto;
}

a:hover,
button:hover,
.clickable:hover,
input:hover,
textarea:hover,
select:hover {
  cursor: url('/assets/cursors/pointer.png') 0 0, pointer;
}

.text-cursor {
  cursor: url('/assets/cursors/text.png') 0 0, text;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
  border-left: 1px solid rgba(0, 240, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue);
  border: 1px solid var(--bg-dark);
}

/* CTA Badge */
.cta-badge {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.1), rgba(191, 0, 255, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.cta-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 30px rgba(0, 240, 255, 0.3);
  border-color: var(--neon-blue);
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Tablet and below (768px) */
@media (max-width: 768px) {

  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Navbar */
  .navbar {
    padding: 12px 0;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .logo-name {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 8px;
  }

  /* Hero */
  .hero {
    padding: 100px 16px 40px;
    min-height: auto;
  }

  .hero-title .line-1,
  .hero-title .line-2,
  .hero-title .line-3,
  .hero-title .line-4 {
    font-size: clamp(2rem, 8vw, 4rem);
  }

  .hero-desc {
    font-size: 14px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-buttons .btn-neon,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 10px;
  }

  .stat-box {
    padding: 16px;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat-txt {
    font-size: 10px;
  }

  /* Section heads */
  .section-head h2 {
    font-size: 1.8rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-box {
    padding: 24px;
  }

  /* Games Grid (Categories) */
  .games-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .game-card.large {
    grid-column: span 1;
  }

  /* Gallery */
  #gallery>.container>div[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .gallery-card img {
    height: 120px !important;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-card {
    max-width: 100%;
  }

  .price-card.featured {
    transform: none;
  }

  /* FAQ */
  .faq-q {
    padding: 16px;
    font-size: 14px;
  }

  .faq-a {
    padding: 0 16px 16px;
    font-size: 13px;
  }

  /* CTA */
  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 1.8rem;
  }

  .cta-badge {
    font-size: 12px;
    padding: 10px 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .social-links-footer {
    justify-content: center;
  }

  /* Music Toggle */
  .music-toggle {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .music-toggle i {
    font-size: 18px;
  }
}

/* Small phones (480px) */
@media (max-width: 480px) {

  /* Hero */
  .hero-badge {
    font-size: 11px;
    padding: 8px 14px;
  }

  .hero-title .line-1,
  .hero-title .line-2,
  .hero-title .line-3,
  .hero-title .line-4 {
    font-size: clamp(1.5rem, 10vw, 2.5rem);
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Gallery - Single column on very small screens */
  #gallery>.container>div[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Buttons */
  .btn-neon,
  .btn-outline {
    padding: 12px 20px;
    font-size: 12px;
  }

  /* Section spacing */
  section {
    padding: 60px 0;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ===== Discord Banner ===== */
.discord-banner-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #5865F2;
  padding: 30px 40px;
  border-radius: 16px;
  color: white;
  text-decoration: none;
  margin: 80px auto;
  max-width: 900px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.discord-banner-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(88, 101, 242, 0.5);
  background: #4752c4;
}

.discord-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.discord-content i {
  font-size: 48px;
  color: white;
}

.discord-text h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: white;
}

.discord-text p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  color: white;
}

.discord-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.discord-arrow i {
  font-size: 20px;
  color: white;
}

.discord-banner-modern:hover .discord-arrow {
  background: white;
  transform: translateX(5px);
}

.discord-banner-modern:hover .discord-arrow i {
  color: #5865F2;
}

@media (max-width: 768px) {
  .discord-banner-modern {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .discord-content {
    flex-direction: column;
    gap: 15px;
  }

  .discord-arrow {
    width: 40px;
    height: 40px;
  }
}