/* ============================================================
   PixelVerse Arena - Main Stylesheet
   Theme: Futuristic Cyber-Gaming with Neon Colors
   Author: PixelVerse Team
   ============================================================ */

/* --- 1. RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: #0a0a1a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

::selection {
  background: #00f0ff;
  color: #0a0a1a;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a1a;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00f0ff, #ff00ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff00ff, #00f0ff);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #00f0ff #0a0a1a;
}

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #b0b0d0;
}

/* Neon Text Effects */
.neon-text-cyan {
  color: #00f0ff;
  text-shadow: 0 0 7px rgba(0, 240, 255, 0.6),
               0 0 10px rgba(0, 240, 255, 0.4),
               0 0 21px rgba(0, 240, 255, 0.3),
               0 0 42px rgba(0, 240, 255, 0.2);
}

.neon-text-magenta {
  color: #ff00ff;
  text-shadow: 0 0 7px rgba(255, 0, 255, 0.6),
               0 0 10px rgba(255, 0, 255, 0.4),
               0 0 21px rgba(255, 0, 255, 0.3),
               0 0 42px rgba(255, 0, 255, 0.2);
}

.neon-text-green {
  color: #00ff88;
  text-shadow: 0 0 7px rgba(0, 255, 136, 0.6),
               0 0 10px rgba(0, 255, 136, 0.4),
               0 0 21px rgba(0, 255, 136, 0.3),
               0 0 42px rgba(0, 255, 136, 0.2);
}

.neon-text-orange {
  color: #ff6600;
  text-shadow: 0 0 7px rgba(255, 102, 0, 0.6),
               0 0 10px rgba(255, 102, 0, 0.4),
               0 0 21px rgba(255, 102, 0, 0.3),
               0 0 42px rgba(255, 102, 0, 0.2);
}

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

.gradient-text {
  background: linear-gradient(135deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, #00ff88, #00f0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #ff6600, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- 3. PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid rgba(0, 240, 255, 0.1);
  border-top-color: #00f0ff;
  border-right-color: #ff00ff;
  animation: spin 1s linear infinite;
  margin-bottom: 2rem;
}

.preloader-spinner-2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 0, 255, 0.1);
  border-bottom-color: #00ff88;
  border-left-color: #ff6600;
  animation: spin 0.8s linear infinite reverse;
  position: absolute;
}

.preloader-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00f0ff;
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: neon-blink 1.5s ease-in-out infinite;
}

.preloader-progress {
  width: 200px;
  height: 3px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  border-radius: 2px;
  animation: loading-bar 2s ease-in-out forwards;
}

.preloader-percentage {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #ff00ff;
  margin-top: 0.8rem;
}

/* --- 4. NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
              inset 0 -1px 0 rgba(0, 240, 255, 0.2);
}

.navbar.active {
  border-bottom-color: #00f0ff;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.navbar-logo span {
  background: linear-gradient(135deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo .logo-accent {
  color: #ff00ff;
  -webkit-text-fill-color: #ff00ff;
}

/* Nav Links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.nav-menu {
  margin-left: 1rem;
}

.navbar-links > li {
  position: relative;
}

.navbar-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b0b0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-links > li > a:hover,
.navbar-links > li > a.active {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.navbar-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #00f0ff;
  box-shadow: 0 0 10px #00f0ff;
  transition: width 0.3s ease;
  border-radius: 1px;
}

.navbar-links > li > a:hover::after,
.navbar-links > li > a.active::after {
  width: 60%;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(13, 13, 43, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.navbar-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: #b0b0d0;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.dropdown-menu li a:hover {
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.05);
  border-left-color: #00f0ff;
  padding-left: 1.8rem;
}

/* Nav Action Buttons */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-actions .btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 8px;
  padding: 8px;
  z-index: 10000;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #00f0ff;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

.hamburger span:nth-child(2) {
  margin: 5px 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- 5. HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 2rem;
  background: #0a0a1a;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.85) 0%,
    rgba(10, 10, 26, 0.6) 50%,
    rgba(10, 10, 26, 0.85) 100%
  );
  z-index: 1;
}

.hero-overlay-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fade-in 1s ease 0.3s both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  animation: neon-blink 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fade-in 1s ease 0.5s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #00f0ff;
}

.hero-title .highlight-green {
  color: #00ff88;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #b0b0d0;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fade-in 1s ease 0.7s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fade-in 1s ease 0.9s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  animation: fade-in 1s ease 1.1s both;
}

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

.hero-stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #00f0ff;
  display: block;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: #b0b0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-in 1s ease 1.5s both;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: #b0b0d0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(176, 176, 208, 0.4);
  border-radius: 13px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #00f0ff;
  border-radius: 2px;
  animation: scroll-mouse 2s ease-in-out infinite;
}

/* --- 6. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #00f0ff, #0099cc);
  color: #0a0a1a;
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.5),
              0 10px 30px rgba(0, 240, 255, 0.2);
  background: linear-gradient(135deg, #00f0ff, #00b4e6);
}

.btn-secondary {
  background: linear-gradient(135deg, #ff00ff, #cc0099);
  color: #ffffff;
  border-color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.5),
              0 10px 30px rgba(255, 0, 255, 0.2);
  background: linear-gradient(135deg, #ff00ff, #e600b3);
}

.btn-outline {
  background: transparent;
  color: #00f0ff;
  border-color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.btn-outline-magenta {
  background: transparent;
  color: #ff00ff;
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.1);
}

.btn-outline-magenta:hover {
  background: rgba(255, 0, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.btn-green {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #0a0a1a;
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-green:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.btn-orange {
  background: linear-gradient(135deg, #ff6600, #cc5200);
  color: #ffffff;
  border-color: #ff6600;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(255, 102, 0, 0.5);
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.btn-icon.btn-sm {
  width: 36px;
  height: 36px;
}

.btn-icon.btn-lg {
  width: 54px;
  height: 54px;
}

/* --- 7. CARDS --- */
.game-card {
  background: rgba(13, 13, 43, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: #00f0ff;
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15),
              0 0 30px rgba(0, 240, 255, 0.05);
}

.game-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.1);
}

.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-body {
  padding: 1.5rem;
}

.game-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.game-card-text {
  font-size: 0.95rem;
  color: #b0b0d0;
  margin-bottom: 1rem;
}

.game-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.game-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: #b0b0d0;
}

.game-card-meta span i {
  color: #00f0ff;
}

.game-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
}

.badge-hot {
  background: #ff00ff;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.badge-new {
  background: #00ff88;
  color: #0a0a1a;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.badge-trending {
  background: #ff6600;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

/* Feature Card */
.feature-card {
  background: rgba(13, 13, 43, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 15px 50px rgba(0, 240, 255, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00f0ff;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 255, 0.2));
  border-color: #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  transform: scale(1.1);
}

.feature-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.feature-card-text {
  font-size: 0.95rem;
  color: #b0b0d0;
  margin-bottom: 0;
}

/* Pricing Card */
.pricing-card {
  background: rgba(13, 13, 43, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.1);
}

.pricing-card.popular {
  border-color: #00f0ff;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.15),
              inset 0 0 30px rgba(0, 240, 255, 0.03);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-popular-badge {
  position: absolute;
  top: 1.2rem;
  right: -3rem;
  padding: 0.4rem 3.5rem;
  background: linear-gradient(135deg, #00f0ff, #ff00ff);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0a0a1a;
  transform: rotate(45deg);
}

.pricing-card-header {
  margin-bottom: 2rem;
}

.pricing-card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.pricing-card-subtitle {
  font-size: 0.9rem;
  color: #b0b0d0;
}

.pricing-card-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #00f0ff;
  margin-bottom: 0.3rem;
}

.pricing-card-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-card-price .period {
  font-size: 0.9rem;
  color: #b0b0d0;
  font-weight: 400;
}

.pricing-card-features {
  margin: 2rem 0;
  text-align: left;
}

.pricing-card-features li {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: #b0b0d0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(176, 176, 208, 0.05);
}

.pricing-card-features li:last-child {
  border-bottom: none;
}

.pricing-card-features li i {
  color: #00ff88;
  font-size: 0.8rem;
}

.pricing-card-features li .disabled {
  color: rgba(176, 176, 208, 0.4);
}

.pricing-card-features li .disabled i {
  color: rgba(176, 176, 208, 0.4);
}

/* --- 8. SECTIONS --- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: #0a0a1a;
}

.section-darker {
  background: #0d0d2b;
}

.section-gradient {
  background: linear-gradient(180deg, #0a0a1a, #0d0d2b);
}

.section-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, #0a0a1a, #0d0d2b);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.06), transparent 70%),
              radial-gradient(ellipse at 70% 50%, rgba(255, 0, 255, 0.04), transparent 70%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  margin: 1rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.section-title-left {
  text-align: left;
}

.section-title-left::after {
  margin: 1rem 0 0;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #b0b0d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-title-left + .section-subtitle {
  margin: 0;
}

/* Section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
  margin: 0;
}

/* --- 9. GRID SYSTEMS --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-flow: dense;
}

.gallery-grid .gallery-item:nth-child(3n+1) {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-grid .gallery-item:nth-child(3n+2) {
  grid-column: span 1;
}

.gallery-grid .gallery-item:nth-child(3n) {
  grid-column: span 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* --- 10. FORMS --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b0b0d0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(13, 13, 43, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Rajdhani', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15),
              0 0 40px rgba(0, 240, 255, 0.05);
  background: rgba(13, 13, 43, 0.95);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(176, 176, 208, 0.5);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300f0ff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: #0d0d2b;
  color: #ffffff;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #00f0ff;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.95rem;
  color: #b0b0d0;
  cursor: pointer;
}

.form-help {
  font-size: 0.85rem;
  color: rgba(176, 176, 208, 0.6);
  margin-top: 0.3rem;
}

.form-error {
  font-size: 0.85rem;
  color: #ff00ff;
  margin-top: 0.3rem;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(13, 13, 43, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.search-bar input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
}

.search-bar input::placeholder {
  color: rgba(176, 176, 208, 0.5);
}

.search-bar button {
  padding: 0.8rem 1.2rem;
  background: transparent;
  color: #00f0ff;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-bar button:hover {
  color: #ff00ff;
}

/* --- 11. FOOTER --- */
.footer {
  background: #0d0d2b;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #00f0ff, #ff00ff, #00ff88) 1;
  padding: 5rem 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #ff00ff, #00ff88, #ff6600);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3),
              0 0 60px rgba(255, 0, 255, 0.1);
}

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

.footer-col-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

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

.footer-logo span {
  background: linear-gradient(135deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 0.95rem;
  color: #b0b0d0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links li a {
  color: #b0b0d0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links li a:hover {
  color: #00f0ff;
  transform: translateX(5px);
}

.footer-links li a i {
  font-size: 0.7rem;
  color: #00f0ff;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #b0b0d0;
  font-size: 0.95rem;
}

.footer-contact li i {
  color: #00f0ff;
  margin-top: 4px;
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  color: #b0b0d0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #00f0ff;
  color: #0a0a1a;
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transform: translateY(-3px);
}

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 1rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(10, 10, 26, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-newsletter input:focus {
  border-color: #00f0ff;
}

.footer-newsletter button {
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, #00f0ff, #0099cc);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #0a0a1a;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: linear-gradient(135deg, #00f0ff, #00b4e6);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(176, 176, 208, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(176, 176, 208, 0.6);
  margin: 0;
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(176, 176, 208, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #00f0ff;
}

/* --- 12. ANIMATIONS (Keyframes) --- */
@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 0 0 7px rgba(0, 240, 255, 0.6),
                 0 0 10px rgba(0, 240, 255, 0.4),
                 0 0 21px rgba(0, 240, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.9),
                 0 0 30px rgba(0, 240, 255, 0.6),
                 0 0 60px rgba(0, 240, 255, 0.3),
                 0 0 100px rgba(0, 240, 255, 0.1);
  }
}

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

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes neon-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll-mouse {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes loading-bar {
  0% {
    width: 0%;
  }
  20% {
    width: 20%;
  }
  40% {
    width: 35%;
  }
  60% {
    width: 55%;
  }
  80% {
    width: 75%;
  }
  95% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}

@keyframes cyber-glitch {
  0% {
    clip-path: inset(0 0 80% 0);
    transform: translate(-2px, 2px);
  }
  10% {
    clip-path: inset(20% 0 60% 0);
    transform: translate(2px, -2px);
  }
  20% {
    clip-path: inset(40% 0 40% 0);
    transform: translate(-1px, 1px);
  }
  30% {
    clip-path: inset(60% 0 20% 0);
    transform: translate(1px, -1px);
  }
  40% {
    clip-path: inset(80% 0 0 0);
    transform: translate(-2px, 2px);
  }
  50% {
    clip-path: inset(10% 0 70% 0);
    transform: translate(2px, 0);
  }
  60% {
    clip-path: inset(30% 0 50% 0);
    transform: translate(-1px, -1px);
  }
  70% {
    clip-path: inset(50% 0 30% 0);
    transform: translate(1px, 1px);
  }
  80% {
    clip-path: inset(70% 0 10% 0);
    transform: translate(-2px, 0);
  }
  90% {
    clip-path: inset(90% 0 0 0);
    transform: translate(2px, -2px);
  }
  100% {
    clip-path: inset(0 0 80% 0);
    transform: translate(0, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 7px rgba(0, 240, 255, 0.6),
                 0 0 10px rgba(0, 240, 255, 0.4),
                 0 0 21px rgba(0, 240, 255, 0.3),
                 0 0 42px rgba(0, 240, 255, 0.2);
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.8;
  }
}

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

@keyframes border-glow {
  0%, 100% {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
  }
  50% {
    border-color: rgba(0, 240, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
  }
}

/* --- 13. COUNTDOWN TIMER --- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 90px;
}

.countdown-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #00f0ff;
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  padding: 1rem 0.5rem;
  min-width: 90px;
}

.countdown-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: #b0b0d0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  display: block;
}

.countdown-separator {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ff00ff;
  padding-top: 1rem;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

/* --- 14. LEADERBOARD --- */
.leaderboard {
  width: 100%;
  border-collapse: collapse;
  background: rgba(13, 13, 43, 0.6);
  border-radius: 8px;
  overflow: hidden;
}

.leaderboard thead {
  background: rgba(0, 240, 255, 0.1);
}

.leaderboard th {
  padding: 1rem 1.2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
  border-bottom: 2px solid rgba(0, 240, 255, 0.2);
}

.leaderboard td {
  padding: 0.9rem 1.2rem;
  color: #b0b0d0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.05);
  vertical-align: middle;
}

.leaderboard tbody tr {
  transition: all 0.3s ease;
}

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

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

.leaderboard-rank {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.leaderboard-rank.gold {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.leaderboard-rank.silver {
  color: #c0c0c0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.leaderboard-rank.bronze {
  color: #cd7f32;
  text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.leaderboard-player {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.leaderboard-player img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 240, 255, 0.2);
}

.leaderboard-player .player-name {
  font-weight: 600;
  color: #ffffff;
}

.leaderboard-score {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: #00ff88;
}

.leaderboard-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

.leaderboard-status.online {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}

.leaderboard-status.offline {
  background: rgba(176, 176, 208, 0.1);
  color: rgba(176, 176, 208, 0.6);
}

.leaderboard-status.playing {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
}

/* --- 15. TESTIMONIALS --- */
.testimonial-card {
  background: rgba(13, 13, 43, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.08);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(0, 240, 255, 0.15);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.2rem;
}

.testimonial-stars i {
  color: #ff6600;
  font-size: 0.9rem;
}

.testimonial-stars i.empty {
  color: rgba(176, 176, 208, 0.3);
}

.testimonial-text {
  font-size: 1rem;
  color: #b0b0d0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 240, 255, 0.2);
}

.testimonial-author-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.testimonial-author-title {
  font-size: 0.85rem;
  color: #b0b0d0;
}

/* --- 16. GALLERY --- */
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.gallery-overlay-text {
  font-size: 0.85rem;
  color: #b0b0d0;
  margin-bottom: 0;
}

.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.2);
  border: 2px solid #00f0ff;
  border-radius: 50%;
  color: #00f0ff;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  color: #00f0ff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: #ff00ff;
  border-color: #ff00ff;
  color: #ffffff;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  color: #00f0ff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.lightbox-nav.prev {
  left: 2rem;
}

.lightbox-nav.next {
  right: 2rem;
}

/* --- 17. PRICING TABLES --- */
.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features-list li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #b0b0d0;
  border-bottom: 1px solid rgba(176, 176, 208, 0.05);
}

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

.pricing-features-list li i {
  color: #00ff88;
  font-size: 0.85rem;
}

.pricing-features-list li .fa-times {
  color: rgba(176, 176, 208, 0.4);
}

.pricing-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #00f0ff;
  line-height: 1;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-amount .period {
  font-size: 1rem;
  font-weight: 400;
  color: #b0b0d0;
}

/* --- 18. FAQ --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: rgba(13, 13, 43, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  border: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(13, 13, 43, 0.8);
  color: #00f0ff;
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: #00f0ff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(13, 13, 43, 0.3);
}

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

.faq-answer p {
  font-size: 0.95rem;
  color: #b0b0d0;
  margin: 0;
  line-height: 1.8;
}

/* --- 19. CONTACT --- */
.contact-info-card {
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  color: #00f0ff;
  font-size: 1.3rem;
}

.contact-info-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.contact-info-text {
  font-size: 0.95rem;
  color: #b0b0d0;
  margin: 0;
  line-height: 1.6;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(13, 13, 43, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #b0b0d0;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.03), transparent);
}

.map-placeholder i {
  font-size: 3rem;
  color: rgba(0, 240, 255, 0.3);
}

.map-placeholder span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: rgba(176, 176, 208, 0.6);
}

/* Contact social links */
.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 50%;
  color: #b0b0d0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #00f0ff;
  color: #0a0a1a;
  border-color: #00f0ff;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  transform: translateY(-3px);
}

/* --- 20. BOOKING / STEPPED FORM --- */
.booking-form {
  max-width: 800px;
  margin: 0 auto;
}

.booking-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.booking-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-50%);
}

.booking-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #ff00ff);
  transform: translateY(-50%);
  transition: width 0.5s ease;
  border-radius: 1px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.booking-step-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 43, 0.8);
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #b0b0d0;
  transition: all 0.3s ease;
}

.booking-step.active .booking-step-number,
.booking-step.completed .booking-step-number {
  background: #00f0ff;
  border-color: #00f0ff;
  color: #0a0a1a;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.booking-step.completed .booking-step-number {
  background: #00ff88;
  border-color: #00ff88;
}

.booking-step-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: #b0b0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-step.active .booking-step-label,
.booking-step.completed .booking-step-label {
  color: #00f0ff;
}

/* Calendar / Date Selection */
.calendar {
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-header h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 6px;
  color: #00f0ff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-nav button:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: #00f0ff;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(176, 176, 208, 0.5);
  text-transform: uppercase;
  padding: 0.5rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #b0b0d0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.calendar-day:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.2);
}

.calendar-day.selected {
  background: #00f0ff;
  color: #0a0a1a;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.calendar-day.today {
  border-color: #00f0ff;
  color: #00f0ff;
}

.calendar-day.disabled {
  color: rgba(176, 176, 208, 0.2);
  cursor: not-allowed;
}

.calendar-day.disabled:hover {
  background: transparent;
  border-color: transparent;
}

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.time-slot {
  padding: 0.8rem;
  text-align: center;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  color: #b0b0d0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  border-color: rgba(0, 240, 255, 0.3);
  color: #ffffff;
}

.time-slot.selected {
  background: rgba(0, 240, 255, 0.15);
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.time-slot.booked {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* --- 21. ACTIVITY / SUB-PAGE HERO --- */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a, #0d0d2b);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 60%, rgba(0, 240, 255, 0.08), transparent 60%),
              radial-gradient(ellipse at 80% 40%, rgba(255, 0, 255, 0.05), transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: #b0b0d0;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #b0b0d0;
}

.page-hero-breadcrumb a {
  color: #00f0ff;
}

.page-hero-breadcrumb a:hover {
  color: #ff00ff;
}

.page-hero-breadcrumb .separator {
  color: rgba(176, 176, 208, 0.4);
}

/* Info Section */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.info-section.reverse {
  direction: rtl;
}

.info-section.reverse > * {
  direction: ltr;
}

.info-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.info-content-text {
  font-size: 1.05rem;
  color: #b0b0d0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.info-features-list {
  display: grid;
  gap: 1rem;
}

.info-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-features-list li i {
  color: #00ff88;
  font-size: 1rem;
  margin-top: 4px;
}

.info-features-list li span {
  font-size: 0.95rem;
  color: #b0b0d0;
}

/* --- 22. TOURNAMENTS --- */
.tournament-bracket {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.tournament-round {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tournament-round-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.match-card {
  background: rgba(13, 13, 43, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.match-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 5px 20px rgba(0, 240, 255, 0.08);
  transform: translateY(-2px);
}

.match-card.live {
  border-color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
}

.match-card.live::before {
  content: 'LIVE';
  position: absolute;
  top: -8px;
  right: 1rem;
  padding: 0.2rem 0.6rem;
  background: #ff00ff;
  border-radius: 4px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

.match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.match-team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
}

.match-team img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.match-team.winner {
  color: #00ff88;
}

.match-score {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #00f0ff;
  padding: 0.2rem 0.6rem;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 4px;
}

.match-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(176, 176, 208, 0.6);
}

.match-info .match-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Prize Pool */
.prize-pool {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(13, 13, 43, 0.8), rgba(0, 240, 255, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.prize-pool::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03), transparent 60%);
  animation: spin 20s linear infinite;
}

.prize-pool-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ff6600, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.prize-pool-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #b0b0d0;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

/* --- 23. PARALLAX --- */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.7));
  z-index: 1;
}

.parallax-overlay-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.08), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255, 0, 255, 0.05), transparent 60%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 2rem;
}

.parallax-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.parallax-text {
  font-size: 1.15rem;
  color: #b0b0d0;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* --- 24. VIDEO BACKGROUND --- */
.video-bg-wrapper {
  position: relative;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.8), rgba(10, 10, 26, 0.5));
  z-index: 1;
}

.video-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.video-control-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50%;
  color: #00f0ff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-control-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* --- 25. RESPONSIVE --- */
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.8rem; }

  .hero-title {
    font-size: 3.5rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tournament-bracket {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .navbar-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }

  .navbar-links.active {
    transform: translateX(0);
  }

  .navbar-links > li {
    width: 100%;
  }

  .navbar-links > li > a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.05);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding-left: 1rem;
    display: none;
  }

  .navbar-links > li:hover .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }

  .info-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .info-section.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .gallery-item:nth-child(3n+1) {
    grid-row: span 1;
    grid-column: span 1;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }

  .navbar {
    padding: 0 1rem;
  }

  .hero {
    padding: 0 1rem;
    min-height: 90vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .countdown-number {
    font-size: 2rem;
    min-width: 70px;
    padding: 0.7rem 0.3rem;
  }

  .countdown-separator {
    font-size: 2rem;
  }

  .calendar-weekdays span,
  .calendar-day {
    font-size: 0.8rem;
  }

  .tournament-bracket {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .prize-pool-amount {
    font-size: 2.5rem;
  }

  .parallax-title {
    font-size: 2rem;
  }

  .booking-step-label {
    display: none;
  }

  .leaderboard {
    font-size: 0.85rem;
  }

  .leaderboard th,
  .leaderboard td {
    padding: 0.7rem 0.8rem;
  }

  .leaderboard-player .player-name {
    font-size: 0.85rem;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-nav.prev {
    left: 0.5rem;
  }

  .lightbox-nav.next {
    right: 0.5rem;
  }
}

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

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-stat-number {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-title::after {
    width: 60px;
  }

  .page-hero-title {
    font-size: 1.6rem;
  }

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

  .sponsors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .countdown {
    gap: 0.8rem;
  }

  .countdown-item {
    min-width: 65px;
  }

  .countdown-number {
    font-size: 1.5rem;
    min-width: 60px;
    padding: 0.5rem 0.2rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }

  .countdown-separator {
    font-size: 1.5rem;
    padding-top: 0.5rem;
  }

  .calendar-day {
    font-size: 0.75rem;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .time-slot {
    padding: 0.6rem;
    font-size: 0.8rem;
  }

  .info-content-title {
    font-size: 1.5rem;
  }

  .prize-pool {
    padding: 2rem 1rem;
  }

  .prize-pool-amount {
    font-size: 2rem;
  }

  .leaderboard {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .leadearboard-table {
    min-width: 600px;
  }

  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-icon {
    margin: 0 auto;
  }

  .map-placeholder {
    height: 250px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .game-card-body {
    padding: 1rem;
  }

  .navbar-actions .btn {
    display: none;
  }

  .navbar-actions .btn-icon {
    display: flex;
  }

  .video-controls {
    bottom: 1rem;
    right: 1rem;
  }

  .video-control-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .section-hero {
    padding: 8rem 0 4rem;
  }

  .parallax-text {
    font-size: 1rem;
  }

  .footer-newsletter {
    flex-direction: column;
  }

  .footer-newsletter input {
    border-radius: 8px;
    border-right: 1px solid rgba(0, 240, 255, 0.15);
    margin-bottom: 0.5rem;
  }

  .footer-newsletter button {
    border-radius: 8px;
  }
}

/* --- 26. ACCESSIBILITY --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid #00f0ff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.2);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #00f0ff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .game-card:hover .game-card-image img,
  .gallery-item:hover img {
    transform: none;
  }

  .game-card:hover,
  .feature-card:hover,
  .pricing-card:hover,
  .testimonial-card:hover {
    transform: none;
  }
}

/* High contrast focus for accessibility */
.high-contrast-focus :focus {
  outline: 3px solid #00f0ff !important;
  outline-offset: 3px !important;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.8rem 1.5rem;
  background: #00f0ff;
  color: #0a0a1a;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 100000;
  border-radius: 8px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* --- 27. UTILITIES --- */
/* Flex helpers */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 3rem; }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.text-cyan { color: #00f0ff; }
.text-magenta { color: #ff00ff; }
.text-green { color: #00ff88; }
.text-orange { color: #ff6600; }
.text-white { color: #ffffff; }
.text-muted { color: #b0b0d0; }
.text-dark { color: #0a0a1a; }

.text-sm { font-size: 0.85rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.2rem; }
.text-xl { font-size: 1.5rem; }
.text-2xl { font-size: 2rem; }
.text-3xl { font-size: 3rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

.font-orbitron { font-family: 'Orbitron', sans-serif; }
.font-rajdhani { font-family: 'Rajdhani', sans-serif; }

/* Text glow */
.text-glow-cyan {
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5),
               0 0 20px rgba(0, 240, 255, 0.3),
               0 0 40px rgba(0, 240, 255, 0.1);
}

.text-glow-magenta {
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5),
               0 0 20px rgba(255, 0, 255, 0.3),
               0 0 40px rgba(255, 0, 255, 0.1);
}

.text-glow-green {
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5),
               0 0 20px rgba(0, 255, 136, 0.3),
               0 0 40px rgba(0, 255, 136, 0.1);
}

.text-glow-orange {
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5),
               0 0 20px rgba(255, 102, 0, 0.3),
               0 0 40px rgba(255, 102, 0, 0.1);
}

/* Spacing */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }

/* Borders & Radius */
.rounded { border-radius: 8px; }
.rounded-full { border-radius: 50%; }
.rounded-sm { border-radius: 4px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }

.border-cyan { border: 1px solid rgba(0, 240, 255, 0.2); }
.border-magenta { border: 1px solid rgba(255, 0, 255, 0.2); }
.border-green { border: 1px solid rgba(0, 255, 136, 0.2); }

/* Neon Box */
.neon-box-cyan {
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2),
              0 0 20px rgba(0, 240, 255, 0.1),
              inset 0 0 10px rgba(0, 240, 255, 0.05);
}

.neon-box-magenta {
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.2),
              0 0 20px rgba(255, 0, 255, 0.1),
              inset 0 0 10px rgba(255, 0, 255, 0.05);
}

.neon-box-green {
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.2),
              0 0 20px rgba(0, 255, 136, 0.1),
              inset 0 0 10px rgba(0, 255, 136, 0.05);
}

/* Glass Card */
.glass-card {
  background: rgba(13, 13, 43, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(0, 240, 255, 0.05);
}

/* Background helpers */
.bg-cyan-light {
  background: rgba(0, 240, 255, 0.05);
}

.bg-magenta-light {
  background: rgba(255, 0, 255, 0.05);
}

.bg-green-light {
  background: rgba(0, 255, 136, 0.05);
}

.bg-gradient-cyan-magenta {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
}

/* Width helpers */
.w-full { width: 100%; }
.w-auto { width: auto; }
.max-w-md { max-width: 400px; }
.max-w-lg { max-width: 600px; }
.max-w-xl { max-width: 800px; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-inline-flex { display: inline-flex; }

/* Position */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Visibility & Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Z-index */
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-10 { z-index: 10; }
.z-100 { z-index: 100; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Aspect ratio */
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-portrait { aspect-ratio: 3 / 4; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Transition helpers */
.transition-all { transition: all 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }

/* Box shadow */
.shadow-sm { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }
.shadow-md { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); }
.shadow-lg { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }
.shadow-xl { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5); }
.shadow-neon { box-shadow: 0 0 20px rgba(0, 240, 255, 0.2); }

/* Image filters */
.img-grayscale { filter: grayscale(100%); }
.img-brightness { filter: brightness(0.8); }
.img-contrast { filter: contrast(1.2); }

/* Line clamp for text truncation */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
  margin: 2rem 0;
}

.divider-vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.2), transparent);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 43, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  color: #00f0ff;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #00f0ff;
  color: #0a0a1a;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
  transform: translateY(-3px);
}

/* Notification / Alert */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.alert-cyan {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #00f0ff;
}

.alert-magenta {
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid rgba(255, 0, 255, 0.3);
  color: #ff00ff;
}

.alert-green {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.alert-orange {
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.3);
  color: #ff6600;
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  padding: 0.4rem 0.8rem;
  background: #0d0d2b;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 100;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Tag / Badge */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.tag-cyan {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.tag-magenta {
  background: rgba(255, 0, 255, 0.1);
  color: #ff00ff;
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.tag-green {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.tag-orange {
  background: rgba(255, 102, 0, 0.1);
  color: #ff6600;
  border: 1px solid rgba(255, 102, 0, 0.2);
}

/* Loading spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 240, 255, 0.1);
  border-top-color: #00f0ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-sm {
  width: 24px;
  height: 24px;
  border-width: 2px;
}

.spinner-lg {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, rgba(13, 13, 43, 0.6) 25%, rgba(13, 13, 43, 0.8) 50%, rgba(13, 13, 43, 0.6) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
  width: 80%;
}

.skeleton-title {
  height: 1.5rem;
  width: 60%;
  margin-bottom: 1rem;
}

.skeleton-image {
  height: 200px;
  width: 100%;
}

/* Page not found / 404 */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-family: 'Orbitron', sans-serif;
  font-size: 10rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-text {
  font-size: 1.1rem;
  color: #b0b0d0;
  max-width: 500px;
  margin-bottom: 2rem;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  background: rgba(13, 13, 43, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  z-index: 9998;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent p {
  font-size: 0.9rem;
  color: #b0b0d0;
  margin: 0;
}

.cookie-consent a {
  color: #00f0ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

/* Mobile bottom nav (for mobile app-like feel) */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 13, 43, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  z-index: 999;
  padding: 0.5rem 0;
}

.mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  color: #b0b0d0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-bottom-nav a i {
  font-size: 1.2rem;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: #00f0ff;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: block;
  }

  body {
    padding-bottom: 65px;
  }
}

/* ============================================================
   ACTIVITY PAGES (header__* BEM classes)
   ============================================================ */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
}

.header--scrolled {
  background: rgba(10, 10, 26, 0.98);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.header__logo-icon svg { display: block; }

.header__logo-text {
  background: linear-gradient(135deg, #00f0ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__nav { display: flex; align-items: center; }

.header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.2rem;
  align-items: center;
}

.header__nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  color: #b0b0d0;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.05);
}

.header__nav-link--active { color: #00f0ff; }

.header__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, #00f0ff, #00cce0);
  color: #0a0a1a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header__btn:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

/* Dropdown */
.header__dropdown { position: relative; }

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: rgba(13, 13, 43, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.header__dropdown:hover .header__dropdown-menu,
.header__dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.header__dropdown-link {
  display: block;
  padding: 0.6rem 1.2rem;
  color: #b0b0d0;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header__dropdown-link:hover,
.header__dropdown-link--active {
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.05);
}

.header__dropdown-link--active {
  color: #00f0ff;
  border-left: 2px solid #00f0ff;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero small (sub-pages) */
.hero--small {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.hero__breadcrumb a {
  color: #b0b0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero__breadcrumb a:hover { color: #00f0ff; }

.hero__breadcrumb-sep { color: #ff00ff; font-weight: 700; }

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 1rem;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 40px rgba(255, 0, 255, 0.2);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #b0b0d0;
  max-width: 600px;
  margin: 0 auto;
}

/* Section */
.section { padding: 5rem 0; }

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

/* Overview */
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview__content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.overview__content p {
  color: #b0b0d0;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.overview__features { list-style: none; padding: 0; margin: 1.5rem 0; }

.overview__features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  color: #b0b0d0;
}

.overview__feature-icon { flex-shrink: 0; }

.overview__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(255,0,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info Strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.info-strip__item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-strip__item:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.info-strip__icon { margin-bottom: 0.8rem; }

.info-strip__label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.3rem;
}

.info-strip__value {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  border-color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.1);
  transform: translateY(-5px);
}

.feature-card__icon { margin-bottom: 1rem; }

.feature-card__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: #b0b0d0;
  margin: 0;
}

/* Pricing cards */
.pricing-section .container > h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid-activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  padding: 2rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}

.pricing-card__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00f0ff;
  margin-bottom: 0.3rem;
}

.pricing-card__duration {
  font-size: 0.85rem;
  color: #b0b0d0;
  margin-bottom: 1.5rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  color: #b0b0d0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, #00f0ff, #00cce0);
  color: #0a0a1a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.pricing-card__btn:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

/* Rules */
.rules-section .container > h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.rules-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: rule-counter;
}

.rules-list li {
  counter-increment: rule-counter;
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.8rem;
  background: rgba(13, 13, 43, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  color: #b0b0d0;
  position: relative;
  font-size: 0.95rem;
}

.rules-list li::before {
  content: counter(rule-counter);
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #00f0ff;
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
}

/* Activity FAQ */
.faq-activity { max-width: 800px; margin: 0 auto; }

.faq-activity details {
  margin-bottom: 0.8rem;
  background: rgba(13, 13, 43, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.faq-activity summary {
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-activity summary:hover { color: #00f0ff; }

.faq-activity summary::after {
  content: "+";
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00f0ff;
  transition: transform 0.3s ease;
}

.faq-activity details[open] summary::after { content: "-"; }

.faq-activity .faq-answer {
  padding: 0 1.5rem 1rem;
  color: #b0b0d0;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #b0b0d0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ff00ff, #cc00cc);
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-section .btn-cta:hover {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
  transform: translateY(-3px);
}

.cta-section .btn-secondary-cta {
  display: inline-block;
  margin-top: 1rem;
  color: #00f0ff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cta-section .btn-secondary-cta:hover { color: #ffffff; }

/* Related activities */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-card {
  padding: 2rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}

.related-card__title {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1rem;
}

/* Section background variants */
.section-dark { background: #0a0a1a; }
.section-darker { background: #080816; }

/* Activity gallery grid */
.gallery-grid-activities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item-act {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,240,255,0.05), rgba(255,0,255,0.05));
  border: 1px solid rgba(0, 240, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item-act:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

/* Responsive for activity pages */
@media (max-width: 992px) {
  .overview__grid,
  .pricing-grid-activities,
  .related-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.99);
    padding: 1rem;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .header__nav.active { opacity: 1; visibility: visible; }
  .header__nav-list { flex-direction: column; width: 100%; gap: 0; }
  .header__nav-link { width: 100%; justify-content: center; padding: 0.8rem; }
  .header__hamburger { display: flex; }
  .header__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    padding-left: 1rem;
    display: none;
  }
  .header__dropdown.active .header__dropdown-menu { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid-activities { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
  .section { padding: 3rem 0; }
}

@media (max-width: 576px) {
  .info-strip { grid-template-columns: 1fr; }
  .hero__title { font-size: 1.8rem; }
}

/* Page Hero (for contact/faq/booking pages) */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,240,255,0.08), rgba(255,0,255,0.08));
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-hero__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 1.5rem;
  text-shadow: 0 0 20px rgba(0,240,255,0.3);
}

.page-hero__subtitle {
  font-size: 1.15rem;
  color: #b0b0d0;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-family: 'Rajdhani', sans-serif;
}

.breadcrumb__link {
  color: #b0b0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover { color: #00f0ff; }

.breadcrumb__sep { color: #ff00ff; }

.breadcrumb__current { color: #00f0ff; font-weight: 600; }

/* Contact page specific */
.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  text-align: center;
  background: rgba(13,13,43,0.6);
  border: 1px solid rgba(0,240,255,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0,240,255,0.1);
  transform: translateY(-5px);
}

.contact-card__icon { margin-bottom: 1rem; }

.contact-card__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-card__text {
  font-size: 0.9rem;
  color: #b0b0d0;
  margin: 0;
  line-height: 1.5;
}

.contact-form-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.section__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-form__field label { color: #b0b0d0; font-size: 0.85rem; font-weight: 600; }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 0.8rem 1rem;
  background: rgba(13,13,43,0.8);
  border: 1px solid rgba(0,240,255,0.15);
  border-radius: 6px;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #00f0ff;
  box-shadow: 0 0 15px rgba(0,240,255,0.1);
}

.contact-form__submit {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #00f0ff, #00cce0);
  color: #0a0a1a;
  border: none;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form__submit:hover {
  box-shadow: 0 0 25px rgba(0,240,255,0.4);
  transform: translateY(-2px);
}

/* Booking page specific */
.booking-section { position: relative; }

.booking-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }

.booking-steps { display: flex; flex-direction: column; gap: 2rem; }

.booking-step {
  display: none;
  padding: 2rem;
  background: rgba(13,13,43,0.6);
  border: 1px solid rgba(0,240,255,0.1);
  border-radius: 8px;
}

.booking-step.active { display: block; }

.booking-step h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

/* Progress bar */
.booking-progress {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-progress__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #b0b0d0;
  font-family: 'Rajdhani', sans-serif;
}

.booking-progress__step.active { color: #00f0ff; }
.booking-progress__step.completed { color: #00ff88; }

.booking-progress__number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid currentColor;
  font-weight: 700;
  font-size: 0.8rem;
}

/* FAQ page specific */
.faq-categories { text-align: center; margin-bottom: 3rem; display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.faq-cat-btn {
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(0,240,255,0.2);
  color: #b0b0d0;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-weight: 600;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: rgba(0,240,255,0.1);
  border-color: #00f0ff;
  color: #00f0ff;
}

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

.faq-item {
  margin-bottom: 0.8rem;
  background: rgba(13,13,43,0.4);
  border: 1px solid rgba(0,240,255,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
}

.faq-question:hover { color: #00f0ff; }

.faq-question::after {
  content: "+";
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00f0ff;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after { content: "-"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: #b0b0d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* Social section */
.social-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(13,13,43,0.6);
  border: 1px solid rgba(0,240,255,0.1);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-card:hover {
  border-color: #00f0ff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,240,255,0.1);
}

.social-card__info { flex: 1; }
.social-card__name { color: #ffffff; font-weight: 600; margin-bottom: 0.2rem; }
.social-card__followers { color: #b0b0d0; font-size: 0.8rem; }

/* FAQ CTA */
.faq-cta {
  text-align: center;
  padding: 4rem 0;
  background: rgba(13,13,43,0.4);
  border-top: 1px solid rgba(0,240,255,0.08);
  margin-top: 3rem;
}

/* Booking summary sidebar */
.booking-summary {
  position: sticky;
  top: 90px;
  padding: 1.5rem;
  background: rgba(13,13,43,0.8);
  border: 1px solid rgba(0,240,255,0.15);
  border-radius: 8px;
}

.booking-summary h4 { font-family: 'Orbitron', sans-serif; color: #ffffff; font-size: 1rem; margin-bottom: 1rem; }
.booking-summary__item { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; color: #b0b0d0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.booking-summary__total { font-size: 1.3rem; color: #00f0ff; font-weight: 700; margin-top: 1rem; text-align: right; }

.booking-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.booking-actions .btn { flex: 1; }

@media (max-width: 768px) {
  .contact-cards__grid,
  .social-section__grid { grid-template-columns: 1fr; }
  .contact-form-section__layout,
  .booking-layout { grid-template-columns: 1fr; }
  .page-hero__title { font-size: 2rem; }
}

/* Mobile menu */
@media (max-width: 991px) {
  nav.nav-menu, .navbar-links.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,26,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  nav.nav-menu--open, .navbar-links.nav-menu--open {
    opacity: 1;
    visibility: visible;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
.no-scroll { overflow: hidden; }

/* FAQ page */
.faq-categories__tabs { display:flex; flex-wrap:wrap; justify-content:center; gap:0.6rem; margin-bottom:3rem; }
.faq-categories__tab {
  padding:0.6rem 1.5rem; background:rgba(13,13,43,0.5); border:1px solid rgba(0,240,255,0.15);
  border-radius:100px; color:#b0b0d0; font-family:'Rajdhani',sans-serif; font-size:0.95rem;
  font-weight:600; cursor:pointer; transition:all 0.3s ease;
}
.faq-categories__tab:hover { border-color:#00f0ff; color:#00f0ff; background:rgba(0,240,255,0.08); }
.faq-categories__tab--active {
  background:linear-gradient(135deg,rgba(0,240,255,0.2),rgba(255,0,255,0.15));
  border-color:#00f0ff; color:#00f0ff; box-shadow:0 0 20px rgba(0,240,255,0.15);
}
.faq-accordion { max-width:800px; margin:0 auto; }
.faq-accordion__group { display:block; }
.faq-accordion__item {
  margin-bottom:0.75rem; background:rgba(13,13,43,0.5); border:1px solid rgba(0,240,255,0.08);
  border-radius:12px; overflow:hidden; transition:border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-accordion__item:hover { border-color:rgba(0,240,255,0.2); box-shadow:0 4px 20px rgba(0,0,0,0.2); }
.faq-accordion__question {
  width:100%; padding:1.2rem 1.5rem; display:flex; align-items:center;
  justify-content:space-between; gap:1rem; background:none; border:none; color:#fff;
  font-family:'Rajdhani',sans-serif; font-size:1.05rem; font-weight:600; cursor:pointer;
  text-align:left; transition:color 0.3s ease;
}
.faq-accordion__question:hover { color:#00f0ff; }
.faq-accordion__icon { flex-shrink:0; width:18px; height:18px; color:#00f0ff; transition:transform 0.3s ease; }
.faq-accordion__item.active .faq-accordion__icon { transform:rotate(180deg); }
.faq-accordion__answer {
  max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.35s ease;
  padding:0 1.5rem; color:#b0b0d0; font-size:0.95rem; line-height:1.7;
}
.faq-accordion__item.active .faq-accordion__answer { max-height:500px; padding:0 1.5rem 1.2rem; }
.faq-accordion__answer p { margin:0; }

/* FAQ contact form */
.faq-contact__card {
  max-width:600px; margin:0 auto; padding:3rem; text-align:center;
  background:rgba(13,13,43,0.5); border:1px solid rgba(0,240,255,0.08); border-radius:16px;
}
.faq-contact__title {
  font-family:'Orbitron',sans-serif; font-size:1.6rem; color:#fff; margin-bottom:0.8rem;
}
.faq-contact__text { color:#b0b0d0; font-size:1rem; margin-bottom:2rem; }
.faq-contact__form { display:flex; flex-direction:column; gap:1.2rem; text-align:left; }
.faq-contact__fields { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.faq-contact__field { display:flex; flex-direction:column; gap:0.4rem; }
.faq-contact__label { color:#b0b0d0; font-size:0.85rem; font-weight:600; }
.faq-contact__input {
  padding:0.75rem 1rem; background:rgba(10,10,26,0.6); border:1px solid rgba(0,240,255,0.15);
  border-radius:8px; color:#fff; font-family:'Rajdhani',sans-serif; font-size:1rem;
  transition:border-color 0.3s ease;
}
.faq-contact__input:focus { outline:none; border-color:#00f0ff; box-shadow:0 0 15px rgba(0,240,255,0.1); }
.faq-contact__textarea { resize:vertical; min-height:100px; }
.btn--primary {
  padding:0.75rem 2rem; background:linear-gradient(135deg,#00f0ff,#00cce0);
  color:#0a0a1a; border:none; border-radius:8px; font-family:'Orbitron',sans-serif;
  font-weight:700; font-size:0.85rem; cursor:pointer; transition:all 0.3s ease;
  text-transform:uppercase; letter-spacing:1px; align-self:center;
}
.btn--primary:hover { box-shadow:0 0 25px rgba(0,240,255,0.4); transform:translateY(-2px); }

@media (max-width:576px) {
  .faq-categories__tab { font-size:0.8rem; padding:0.5rem 1rem; }
  .faq-accordion__question { font-size:0.95rem; padding:1rem 1.2rem; }
  .faq-accordion__answer { font-size:0.9rem; }
  .faq-contact__fields { grid-template-columns:1fr; }
  .faq-contact__card { padding:2rem 1.5rem; }
}

/* FAQ page */
.faq-categories__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.faq-categories__tab {
  padding: 0.6rem 1.5rem;
  background: rgba(13,13,43,0.5);
  border: 1px solid rgba(0,240,255,0.15);
  border-radius: 100px;
  color: #b0b0d0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-categories__tab:hover {
  border-color: #00f0ff;
  color: #00f0ff;
  background: rgba(0,240,255,0.08);
}

.faq-categories__tab--active {
  background: linear-gradient(135deg, rgba(0,240,255,0.2), rgba(255,0,255,0.15));
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 20px rgba(0,240,255,0.15);
}

.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-accordion__group { display: block; }

.faq-accordion__group[style*="display: none"] { display: none !important; }

.faq-accordion__item {
  margin-bottom: 0.75rem;
  background: rgba(13,13,43,0.5);
  border: 1px solid rgba(0,240,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-accordion__item:hover {
  border-color: rgba(0,240,255,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.faq-accordion__question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-accordion__question:hover { color: #00f0ff; }

.faq-accordion__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #00f0ff;
  transition: transform 0.3s ease;
}

.faq-accordion__item.active .faq-accordion__icon {
  transform: rotate(180deg);
}

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: #b0b0d0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-accordion__item.active .faq-accordion__answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

.faq-accordion__answer p { margin: 0; }

.faq-cta {
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(0,240,255,0.08);
  margin-top: 2rem;
}

.faq-cta h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.faq-cta p {
  color: #b0b0d0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Hero banner for gallery/tournaments/events */
.section-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
}

.section-hero .container > div {
  text-align: center;
}

.hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: #b0b0d0;
}

.hero-breadcrumb a { color: #00f0ff; text-decoration: none; }
.hero-breadcrumb a:hover { text-decoration: underline; }
.hero-breadcrumb span { color: #b0b0d0; }

.hero-subtitle {
  color: #b0b0d0;
  font-size: 1.15rem;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.gradient-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00f0ff 0%, #ff00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .section-hero { padding: 8rem 0 3rem; }
  .section-title.gradient-text { font-size: 2.2rem; }
}

@media (max-width: 576px) {
  .faq-categories__tab { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .faq-accordion__question { font-size: 0.95rem; padding: 1rem 1.2rem; }
  .faq-accordion__answer { font-size: 0.9rem; }
}

/* ============================================================
   ACTIVITY DETAIL PAGES - Features, Pricing, and Sections
   ============================================================ */

/* Section title (shared across activity pages) */
.section__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Details content */
.details__content {
  max-width: 800px;
  margin: 0 auto;
  color: #b0b0d0;
  font-size: 1.05rem;
  line-height: 1.8;
}
.details__content p { margin-bottom: 1rem; }

/* Info strip (card-based) */
.info-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.info-strip__card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.info-strip__card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
}

/* Features & Highlights - Card Grid */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.features__card {
  padding: 2rem 1.5rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.features__card:hover {
  border-color: #ff00ff;
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.15);
  transform: translateY(-5px);
}
.features__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #00f0ff;
}
.features__card-icon use { stroke: #00f0ff; fill: none; }
.features__card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.features__card-desc {
  font-size: 0.9rem;
  color: #b0b0d0;
  line-height: 1.6;
  margin: 0;
}

/* Pricing Plans - Card Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing__card {
  padding: 2.5rem 2rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.pricing__card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}
.pricing__card--featured {
  border-color: #ff00ff;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.15);
  transform: scale(1.05);
}
.pricing__card--featured:hover {
  border-color: #ff00ff;
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.25);
}
.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.2rem;
  background: linear-gradient(135deg, #ff00ff, #cc00cc);
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
}
.pricing__card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.pricing__price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #00f0ff;
  margin-bottom: 0.3rem;
}
.pricing__duration {
  font-size: 0.9rem;
  color: #b0b0d0;
  font-family: 'Rajdhani', sans-serif;
}
.pricing__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  text-align: left;
}
.pricing__features li {
  padding: 0.6rem 0;
  color: #b0b0d0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing__features li::before {
  content: ">";
  color: #00ff88;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}
.pricing__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #00f0ff, #00cce0);
  color: #0a0a1a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.pricing__btn:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
  color: #0a0a1a;
}

/* Gallery grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Rules list */
.rules__list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: rule-counter;
}
.rules__list li {
  counter-increment: rule-counter;
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.8rem;
  background: rgba(13, 13, 43, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  color: #b0b0d0;
  position: relative;
  font-size: 0.95rem;
}
.rules__list li::before {
  content: counter(rule-counter);
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #00f0ff;
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
}

/* FAQ section (activity pages) */
.faqs__list {
  max-width: 800px;
  margin: 0 auto;
}
.faqs__item {
  margin-bottom: 0.8rem;
  background: rgba(13, 13, 43, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
.faqs__question {
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
  text-align: left;
}
.faqs__question:hover { color: #00f0ff; }
.faqs__toggle {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #00f0ff;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faqs__item.open .faqs__toggle { transform: rotate(45deg); }
.faqs__answer {
  padding: 0 1.5rem 1rem;
  color: #b0b0d0;
  font-size: 0.95rem;
  display: none;
}
.faqs__item.open .faqs__answer { display: block; }

/* CTA Section */
.cta__container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta__title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cta__desc {
  color: #b0b0d0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.btn--outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: transparent;
  color: #00f0ff;
  border: 2px solid #00f0ff;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.btn--outline:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}

/* Related activities */
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.related__card {
  padding: 2rem;
  background: rgba(13, 13, 43, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.related__card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  transform: translateY(-5px);
}
.related__card-title {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1rem;
}
.related__card-desc {
  color: #b0b0d0;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Responsive for activity detail pages */
@media (max-width: 992px) {
  .features__grid,
  .related__grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 450px; }
  .pricing__card--featured { transform: none; }
  .pricing__card--featured:hover { transform: translateY(-5px); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .features__grid,
  .related__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .cta__title { font-size: 1.8rem; }
  .section__title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
  .info-strip__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide .hero-content {
  padding-top: 5rem;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10, 10, 26, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.hero:hover .hero-slider-arrow {
  opacity: 1;
}

.hero-slider-arrow:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.hero-slider-prev {
  left: 1.5rem;
}

.hero-slider-next {
  right: 1.5rem;
}

.hero-slider-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider-dot.active {
  background: #00f0ff;
  border-color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.hero-slider-dot:hover {
  background: rgba(0, 240, 255, 0.5);
}

@media (max-width: 768px) {
  .hero-slider-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-slider-prev { left: 0.75rem; }
  .hero-slider-next { right: 0.75rem; }
  .hero-slider-dots { bottom: 5rem; }
}

@media (max-width: 576px) {
  .hero-slider-arrow { display: none; }
  .hero-slider-dots { bottom: 4.5rem; }
  .hero-slider-dot { width: 10px; height: 10px; }
}
