/* ==========================================================================
   WKF ESPAÑA - ULTRA FUTURISTIC CYBERPUNK DESIGN SYSTEM
   World Kickboxing Federation España Official Stylesheet
   ========================================================================== */

/* 1. CUSTOM DESIGN TOKENS & VARIABLES */
:root {
  /* Color Palette */
  --bg-obsidian: #050508;
  --bg-card: rgba(12, 14, 24, 0.65);
  --bg-card-hover: rgba(18, 22, 38, 0.85);

  --color-gold: #FFD700;
  --color-gold-bright: #FFF099;
  --color-gold-dark: #B8860B;
  --gold-glow: rgba(255, 215, 0, 0.4);

  --color-red: #FF2A00;
  --color-red-bright: #FF5533;
  --red-glow: rgba(255, 42, 0, 0.45);

  --color-cyan: #00F0FF;
  --color-blue: #0077FF;
  --cyan-glow: rgba(0, 240, 255, 0.4);
  --blue-glow: rgba(0, 119, 255, 0.4);

  --color-green: #00FF88;
  --text-primary: #F0F4FF;
  --text-secondary: #90A0C0;
  --text-muted: #506080;

  /* Glassmorphism Tokens */
  --glass-bg: rgba(10, 14, 26, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.7);

  /* Cyber Cuts & Polygon Traps */
  --clip-cyber: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  --clip-cyber-lg: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);

  /* Typography */
  --font-heading: 'Orbitron', sans-serif;
  --font-tech: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE & RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.cyber-theme {
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Canvas & Grid Overlay */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.cyber-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

/* 3. UTILITY CLASSES & GLASSMORPHISM */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 8px;
}

.glass-pill {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tech);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.text-gold { color: var(--color-gold); }
.text-red { color: var(--color-red); }
.text-cyan { color: var(--color-cyan); }
.text-green { color: var(--color-green); }

.gradient-text-gold {
  background: linear-gradient(135deg, #FFF099 0%, #FFD700 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #E0FFFF 0%, #00F0FF 50%, #0077FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pulse Dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.pulse-dot.red {
  background-color: var(--color-red);
  box-shadow: 0 0 10px var(--color-red);
  animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 42, 0, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 42, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 42, 0, 0); }
}

/* 4. BUTTONS & CYBERPUNK CONTROLS */
.btn-cyber {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  clip-path: var(--clip-cyber);
  transition: all var(--transition-fast);
  padding: 14px 28px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* Gold Button */
.btn-gold {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #050508;
  box-shadow: 0 0 15px var(--gold-glow);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FFF099, #FFD700);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
  transform: translateY(-2px);
}

/* Red Button */
.btn-red-glow {
  background: linear-gradient(135deg, #FF2A00, #990000);
  color: #FFFFFF;
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-red-glow:hover {
  background: linear-gradient(135deg, #FF5533, #FF2A00);
  box-shadow: 0 0 30px rgba(255, 42, 0, 0.9);
  transform: translateY(-2px);
}

/* Cyan Button */
.btn-cyan-glow {
  background: linear-gradient(135deg, #00F0FF, #0077FF);
  color: #050508;
  box-shadow: 0 0 20px var(--cyan-glow);
}
.btn-cyan-glow:hover {
  background: linear-gradient(135deg, #80F8FF, #00F0FF);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.9);
  transform: translateY(-2px);
}

/* Outlined Cyber Buttons */
.btn-outline-gold {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: #050508;
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-outline-cyan {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
}
.btn-outline-cyan:hover {
  background: var(--color-cyan);
  color: #050508;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-outline-red {
  background: rgba(255, 42, 0, 0.05);
  border: 1px solid var(--color-red);
  color: var(--color-red);
}
.btn-outline-red:hover {
  background: var(--color-red);
  color: #FFFFFF;
  box-shadow: 0 0 20px var(--red-glow);
}

.glowing-pulse {
  animation: pulseBtn 2s infinite alternate;
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 10px var(--gold-glow); }
  100% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.9); }
}

/* 5. HEADER / NAVBAR */
#main-header.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: all var(--transition-normal);
}

#main-header.scrolled {
  background: rgba(5, 5, 8, 0.92);
  border-bottom-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
  max-width: 1500px;
  width: 96%;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.85));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 1px;
  line-height: 1.1;
}

.brand-sub {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--color-gold);
}

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

/* NAVBAR DROPDOWN SUBMENU */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 250px;
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 10px 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #CBD5E1;
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: rgba(255, 215, 0, 0.12);
  color: #FFFFFF;
  transform: translateX(4px);
  box-shadow: inset 3px 0 0 var(--color-gold);
}

.dropdown-item i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.4rem;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 20px;
  border-top: 1px solid var(--glass-border);
}

.mobile-drawer.open {
  display: flex;
}

.mobile-link {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 6. UNIFIED HERO & MODALIDADES HEADER ZONE WITH IMAGE 2 BACKGROUND */
.unified-zone-wrapper {
  position: relative;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 30px;
  overflow: hidden;
  background-color: var(--bg-obsidian);
}

.unified-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.unified-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.72) contrast(1.15) saturate(1.2);
  transform: scale(1.02);
  animation: heroBgSubtlePulse 8s infinite alternate ease-in-out;
}

@keyframes heroBgSubtlePulse {
  0% {
    transform: scale(1.02);
    filter: brightness(0.72) contrast(1.15) saturate(1.2);
  }
  100% {
    transform: scale(1.06);
    filter: brightness(0.78) contrast(1.18) saturate(1.25);
  }
}

/* Gradients for smooth fade at top and bottom */
.unified-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, rgba(5,5,8,0.98) 0%, rgba(5,5,8,0.6) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.unified-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, #050508 0%, rgba(5,5,8,0.92) 65%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.unified-gradient-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,5,8,0.18) 20%, rgba(5,5,8,0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-section-clean {
  position: relative;
  z-index: 5;
  padding: 10px 24px 30px;
  text-align: center;
}

.modalidades-header-in-zone {
  position: relative;
  z-index: 5;
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.hero-cyber-light-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, rgba(255, 42, 0, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 3;
  animation: cyberPulseLight 4s infinite alternate ease-in-out;
}

@keyframes cyberPulseLight {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform, opacity;
  transition: transform 0.08s ease-out, opacity 0.08s ease-out;
}

/* Center Hero Official WKF Logo */
.hero-logo-center-wrapper {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-center-official-logo {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.85)) drop-shadow(0 0 45px rgba(0, 0, 0, 0.95));
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.hero-center-official-logo:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 35px rgba(255, 215, 0, 1)) drop-shadow(0 0 60px rgba(0, 0, 0, 1));
}

/* Clean Professional Metallic Title */
.hero-title-clean {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
  margin: 8px 0 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 0, 0, 0.9);
}

.text-gold-metallic {
  background: linear-gradient(135deg, #FFF5B8 0%, #FFD700 45%, #FFA500 75%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

/* Professional Subtitle Badge */
.hero-subtitle-badge {
  background: rgba(5, 5, 8, 0.82);
  border: 1px solid rgba(255, 215, 0, 0.6);
  backdrop-filter: blur(14px);
  padding: 10px 28px;
  border-radius: 50px;
  font-family: var(--font-tech);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 3px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85), 0 0 15px var(--gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pulse-dot.gold {
  background-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold);
  animation: pulseGold 1.8s infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.8); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.hero-tagline-pro {
  font-family: var(--font-tech);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 3px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

/* Glitch Effect */
.glitch-text {
  position: relative;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--color-red);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: -2px 0 var(--color-cyan);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim-2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% { clip: rect(10px, 9999px, 40px, 0); }
  20% { clip: rect(60px, 9999px, 80px, 0); }
  40% { clip: rect(20px, 9999px, 50px, 0); }
  60% { clip: rect(80px, 9999px, 100px, 0); }
  80% { clip: rect(30px, 9999px, 70px, 0); }
  100% { clip: rect(50px, 9999px, 90px, 0); }
}

@keyframes glitch-anim-2 {
  0% { clip: rect(40px, 9999px, 10px, 0); }
  25% { clip: rect(70px, 9999px, 30px, 0); }
  50% { clip: rect(20px, 9999px, 60px, 0); }
  75% { clip: rect(90px, 9999px, 40px, 0); }
  100% { clip: rect(30px, 9999px, 80px, 0); }
}

.hero-subtitle {
  font-family: var(--font-tech);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 4px;
  margin-bottom: 12px;
  text-shadow: 0 0 12px var(--gold-glow);
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

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

/* Stats Counter Panel */
.stats-counter-grid {
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 16px;
  margin-top: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background: rgba(8, 12, 22, 0.7);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* 7. SECTIONS GENERAL STYLING */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}

#informacion.section-container {
  padding-top: 20px;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-tag {
  font-family: var(--font-tech);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* FUTURISTIC BACKGROUND SLIDER CONTAINER FOR VB SPACES (SIN MARCO, CON DEGRADADO E INTERACTIVO) */
.vb-futuristic-bg-container {
  position: relative;
  width: 100%;
  padding: 40px 0 60px;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--bg-obsidian);
}

.vb-bg-slides-viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.vb-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), visibility 1s ease;
}

.vb-bg-slide.active {
  opacity: 1;
  visibility: visible;
}

.vb-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68) contrast(1.15) saturate(1.2);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}

.vb-bg-slide.active .vb-bg-img {
  transform: scale(1.07);
}

/* Gradient overlays for borderless seamless blending */
.vb-gradient-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, #050508 0%, rgba(5,5,8,0.7) 60%, transparent 100%);
  z-index: 2;
}

.vb-gradient-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, #050508 0%, rgba(5,5,8,0.85) 65%, transparent 100%);
  z-index: 2;
}

.vb-gradient-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,5,8,0.2) 20%, rgba(5,5,8,0.75) 100%);
  z-index: 2;
}

/* Interactive Futuristic Selector Bar */
.vb-interactive-selector-bar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.vb-selector-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 40px;
  background: rgba(10, 10, 18, 0.82);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.15);
  flex-wrap: wrap;
  justify-content: center;
}

.vb-pill-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vb-pill-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.vb-pill-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 42, 0, 0.3) 100%);
  border: 1px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.vb-content-wrapper {
  position: relative;
  z-index: 5;
  padding: 0 20px;
}

.venue-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.0);
  transition: transform 6s ease-out;
}

.venue-slide.active .venue-slide-img {
  transform: scale(1.04);
}

.venue-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.35) 0%, rgba(5, 5, 8, 0.15) 40%, rgba(5, 5, 8, 0.92) 100%);
  pointer-events: none;
}

.venue-slide-caption {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 5;
}

.venue-slide-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin: 10px 0 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.venue-slide-caption p {
  font-size: 0.95rem;
  color: #CBD5E1;
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* HERO SUBMENU BAR UNDER PASSION POWER & GLORY */
.hero-submenu-wrapper {
  display: flex;
  justify-content: center;
  margin: -15px auto 35px;
  position: relative;
  z-index: 10;
  padding: 0 16px;
}

.hero-submenu-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(10, 10, 18, 0.92);
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(255, 215, 0, 0.18);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-submenu-btn {
  color: #CBD5E1;
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}

.hero-submenu-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero-submenu-btn.active, .hero-submenu-btn:active {
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.22) 0%, rgba(255, 42, 0, 0.28) 100%);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
}

/* VB SPACES PHOTO GALLERY CARDS */
.vb-photo-card img {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vb-photo-card:hover img {
  transform: scale(1.08);
}
.vb-photo-card:hover {
  border-color: var(--color-cyan) !important;
  box-shadow: 0 12px 30px rgba(0, 240, 255, 0.25) !important;
}

/* CYBER FEATURE BLOCK (WKF / VB SPACES) */
.cyber-feature-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(12, 12, 20, 0.75);
  border: 1px solid rgba(255, 215, 0, 0.25);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 8px;
  margin: 2.5rem 0;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  .cyber-feature-block {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3.5rem;
  }
}

.feature-image-container {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(0, 119, 255, 0.4);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.15);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.cyber-feature-block:hover .feature-img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
}

.image-glow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 5, 8, 0.9) 100%),
              radial-gradient(circle at top left, rgba(0, 119, 255, 0.25), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.cyber-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-red);
  z-index: 3;
  pointer-events: none;
}
.corner-tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.corner-br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.tech-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 4;
  background: rgba(5, 5, 8, 0.85);
  border: 1px solid var(--color-gold);
  padding: 0.4rem 0.9rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
  border-radius: 4px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-red);
  animation: blink 1.2s infinite alternate;
}

@keyframes blink {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.eyebrow-tag {
  font-family: 'Orbitron', sans-serif;
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.6rem;
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #ffffff 40%, #bbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-description {
  color: #ccc;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--color-cyan);
  padding: 0.8rem 1rem;
  border-radius: 0 4px 4px 0;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-cyber-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
  background: linear-gradient(90deg, #fff, var(--color-gold));
}

/* INFINITE LOGO MARQUEE SLIDER */
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: logoScroll 22s linear infinite;
}

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

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.logo-slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.logo-slide-item:hover {
  transform: translateY(-4px) scale(1.1);
}

.logo-slide-item img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.logo-slide-item:hover img {
  border-color: var(--color-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.logo-slide-item span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ddd;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Slider Controls (Arrows & Dots) */
.slider-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 10, 18, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.slider-control-btn:hover {
  background: var(--color-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.slider-control-btn.arrow-left {
  left: 18px;
}

.slider-control-btn.arrow-right {
  right: 18px;
}

.venue-slider-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active, .slider-dot:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold);
  transform: scale(1.25);
}

/* EVENT SUBMENU BAR & TAB PANELS */
.event-submenu-wrapper {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin: 15px auto 10px;
  padding: 0 16px;
}

.event-submenu-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 50px;
  background: rgba(10, 10, 18, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.15);
}

.event-submenu-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-tech);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-submenu-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.event-submenu-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 42, 0, 0.25) 100%);
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.tab-arrow-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.event-submenu-btn.active .tab-arrow-icon {
  transform: rotate(180deg);
}

/* EVENT TAB PANELS CONTROL */
.event-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.event-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* 8. SECCIÓN INFORMACIÓN Y REGLAMENTO */
.modalidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 32px 24px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

/* ELEGANT DISCREET ACCORDION CARD BUTTONS */
.accordion-card {
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 10px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  width: 100%;
}

.accordion-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.accordion-title-group .card-badge {
  position: relative;
  top: 0;
  right: 0;
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  letter-spacing: 0.8px;
  border-radius: 3px;
}

.accordion-card .card-icon-header {
  margin-bottom: 0;
  gap: 12px;
}

.accordion-card .card-icon-header i {
  font-size: 1.25rem;
}

.accordion-card .card-icon-header h3 {
  font-family: 'Rajdhani', var(--font-body), sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #F1F5F9;
  line-height: 1.35;
}

.accordion-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.accordion-card:hover .accordion-toggle-icon,
.accordion-card.active .accordion-toggle-icon {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.12);
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

/* Expand on Hover OR Click / Touch (.active class) */
.accordion-card:hover .accordion-content,
.accordion-card.active .accordion-content {
  max-height: 500px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.card-hover-cyan:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 0 25px var(--cyan-glow);
}
.card-hover-gold:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 25px var(--gold-glow);
}
.card-hover-red:hover {
  border-color: var(--color-red);
  box-shadow: 0 0 25px var(--red-glow);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.badge-cyan { background: rgba(0, 240, 255, 0.15); color: var(--color-cyan); border: 1px solid var(--color-cyan); }
.badge-gold { background: rgba(255, 215, 0, 0.15); color: var(--color-gold); border: 1px solid var(--color-gold); }
.badge-red { background: rgba(255, 42, 0, 0.15); color: var(--color-red); border: 1px solid var(--color-red); }
.badge-blue { background: rgba(0, 119, 255, 0.15); color: var(--color-blue); border: 1px solid var(--color-blue); }

.card-icon-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.card-icon-header i {
  font-size: 2rem;
}

.card-icon-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  margin-bottom: 28px;
  margin-top: auto;
}

.card-features li {
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-card-link {
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
  padding: 0;
}

.btn-card-link:hover {
  color: var(--color-gold);
}

.rulebook-banner {
  padding: 32px 40px;
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.banner-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* 9. SECCIÓN EVENTOS Y GALAS (VIDEO GAME FIGHT CARD GRID) */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.event-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.border-glow-gold { border: 1px solid rgba(255, 215, 0, 0.3); }
.border-glow-gold:hover { border-color: var(--color-gold); box-shadow: 0 0 30px var(--gold-glow); transform: translateY(-6px); }

.border-glow-cyan { border: 1px solid rgba(0, 240, 255, 0.3); }
.border-glow-cyan:hover { border-color: var(--color-cyan); box-shadow: 0 0 30px var(--cyan-glow); transform: translateY(-6px); }

.border-glow-red { border: 1px solid rgba(255, 42, 0, 0.3); }
.border-glow-red:hover { border-color: var(--color-red); box-shadow: 0 0 30px var(--red-glow); transform: translateY(-6px); }

.event-header-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.event-date-pill {
  background: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--glass-border);
}

.event-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-location {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.event-main-match {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.event-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: auto;
}

.event-actions {
  display: flex;
  gap: 12px;
}

.event-actions .btn-cyber {
  flex: 1;
}

/* 10. SECCIÓN RANKING */
.ranking-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.rank-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rank-tab-btn:hover, .rank-tab-btn.active {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.ranking-board {
  padding: 24px;
  border-color: rgba(255, 215, 0, 0.2);
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rank-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(15, 20, 34, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.rank-item:hover {
  background: rgba(25, 32, 54, 0.85);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(6px);
}

.rank-item.champion {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.12), rgba(15, 20, 34, 0.6));
  border-color: var(--color-gold);
}

.rank-position {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  width: 50px;
  text-align: center;
}

.rank-fighter-info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.rank-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
}

.rank-item.champion .rank-avatar {
  border-color: var(--color-gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.fighter-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.fighter-club {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.rank-stats {
  display: flex;
  gap: 24px;
  text-align: center;
  font-family: var(--font-tech);
}

.stat-box-val {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;

}
.stat-box-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 11. SECCIÓN PORTAL DE AFILIACIÓN */
.affiliation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.form-container {
  padding: 32px;
}

.form-category-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.form-cat-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 10px;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.form-cat-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.cyber-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.cyber-input, .cyber-select {
  width: 100%;
  background: rgba(5, 8, 16, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.cyber-input:focus, .cyber-select:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 15px var(--cyan-glow);
  background: rgba(10, 16, 30, 0.95);
}

.cyber-select option {
  background: var(--bg-obsidian);
  color: var(--text-primary);
}

.cyber-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.full-width {
  width: 100%;
}

/* DIGITAL LICENSE CARD PREVIEW */
.license-preview-container {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.license-card-header h4 {
  font-family: var(--font-tech);
  font-size: 1rem;
  letter-spacing: 1px;
}

.license-status-badge {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-green);
  background: rgba(0, 255, 136, 0.1);
  padding: 4px 10px;
  border: 1px solid var(--color-green);
  border-radius: 4px;
}

.digital-license-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 24, 44, 0.95), rgba(5, 8, 16, 0.98));
  border: 1px solid var(--color-gold);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 0 30px var(--gold-glow);
  overflow: hidden;
}

.card-hologram-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 215, 0, 0.08) 45%, rgba(0, 240, 255, 0.08) 55%, transparent 70%);
  pointer-events: none;
}

.license-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.license-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-gold);
}

.license-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-primary);
}

.license-body-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.license-photo-frame {
  width: 90px;
  height: 110px;
  border: 2px solid var(--color-gold);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.license-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.license-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-family: var(--font-tech);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.detail-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.detail-row-flex {
  display: flex;
  gap: 16px;
}

.license-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.fake-barcode {
  width: 140px;
  height: 24px;
  background: repeating-linear-gradient(90deg, #fff 0, #fff 2px, transparent 2px, transparent 4px, #fff 4px, #fff 7px);
  margin-bottom: 2px;
}

.barcode-container span {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.qr-container i {
  font-size: 2.2rem;
}

/* 12. FOOTER & LIVE TICKER */
#main-footer {
  margin-top: 80px;
  position: relative;
  z-index: 10;
}

.live-ticker-bar {
  background: rgba(255, 42, 0, 0.15);
  border-y: 1px solid var(--color-red);
  display: flex;
  align-items: center;
  padding: 10px 24px;
  font-family: var(--font-tech);
  font-size: 0.95rem;
  overflow: hidden;
}

.ticker-label {
  font-weight: 800;
  color: var(--color-red);
  white-space: nowrap;
  margin-right: 20px;
}

.ticker-content-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-content {
  display: inline-block;
  animation: ticker 30s linear infinite;
}

.ticker-content span {
  margin-right: 40px;
  color: var(--text-primary);
}

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

.footer-main-grid {
  max-width: 1300px;
  margin: 40px auto 0;
  padding: 50px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-gold);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-socials a {
  color: var(--text-primary);
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--color-gold);
  color: #050508;
  box-shadow: 0 0 15px var(--gold-glow);
}

.footer-bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* 13. MODALS */
.cyber-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cyber-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(8px);
}

.modal-window {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px;
  border-color: var(--color-gold);
  box-shadow: 0 0 40px var(--gold-glow);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-top: 6px;
  margin-bottom: 24px;
}

/* Fightcard Matchups layout inside modal */
.fight-matchup-card {
  background: rgba(10, 15, 28, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  text-align: center;
}

.corner-red { color: var(--color-red); }
.corner-blue { color: var(--color-cyan); }

.vs-badge {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-gold);
}

/* 14. RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .affiliation-wrapper { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr 1fr; }
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-main-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn-cyber { width: 100%; }
  .banner-content { flex-direction: column; text-align: center; }
  .license-body-grid { flex-direction: column; }
}

/* ==========================================================================
   WKF GOLDEN CUP SECTION STYLING (CYBERPUNK GOLD LUXURY)
   ========================================================================== */
.golden-cup-section {
  max-width: 1200px;
  margin: 3.5rem auto;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.15), transparent 70%),
              radial-gradient(circle at 90% 90%, rgba(255, 42, 0, 0.10), transparent 50%),
              #050508;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 14px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
}

.gold-corner {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 3px solid #FFD700;
  z-index: 5;
  pointer-events: none;
}
.gc-tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.gc-tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.gc-bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.gc-br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

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

.badge-cup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid #FFD700;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #FFD700;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.title-glitch {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFD700 60%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.subtitle-gold {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #FFD700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.golden-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .golden-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.narrative-card {
  background: rgba(18, 16, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 10px;
  border-left: 4px solid #FFD700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.highlight-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding-bottom: 1.5rem;
}

.narrative-body {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.quote-box {
  background: rgba(255, 42, 0, 0.08);
  border-left: 3px solid #FF2A00;
  padding: 1.1rem 1.4rem;
  font-size: 1.05rem;
  color: #fff;
  font-style: italic;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 4px 15px rgba(255, 42, 0, 0.15);
}

.disciplines-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: #FFD700;
  letter-spacing: 2px;
  margin: 2rem 0 0.8rem 0;
}

.disciplines-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.tag-item:hover {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.trophy-card {
  background: linear-gradient(145deg, rgba(22, 19, 12, 0.95), rgba(8, 8, 12, 0.98));
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.8);
}

.trophy-image-wrap {
  width: 100%;
  height: 220px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.trophy-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.15);
  transition: transform 0.5s ease;
}

.trophy-card:hover .trophy-image-wrap img {
  transform: scale(1.06);
}

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

.cup-stat-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1.2rem 1rem;
  border-radius: 6px;
}

.cup-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFD700;
  display: block;
}

.cup-stat-label {
  font-size: 0.75rem;
  color: #aaa;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-golden-cta {
  width: 100%;
  margin-top: 1.8rem;
  padding: 1.2rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #000;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  border: none;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.btn-golden-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.8);
  background: linear-gradient(90deg, #fff, #FFD700, #fff);
}

/* ==========================================================================
   WKF METALLIC CYBERPUNK REGISTER MODULE STYLING
   ========================================================================== */
.register-cyber-module {
  max-width: 1200px;
  margin: 3.5rem auto 2.5rem;
  background: linear-gradient(135deg, rgba(20, 22, 30, 0.96) 0%, rgba(12, 14, 20, 0.98) 50%, rgba(28, 30, 38, 0.96) 100%),
              radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.15), transparent 70%);
  border: 1px solid rgba(220, 225, 245, 0.35);
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.25),
              inset 0 -1px 2px rgba(0, 0, 0, 0.8),
              0 15px 45px rgba(0, 0, 0, 0.85),
              0 0 25px rgba(255, 215, 0, 0.12);
  text-align: center;
}

.bg-glow-orange {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 42, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.bg-glow-blue {
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.register-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.register-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 215, 0, 0.7);
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 0.45rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.pulse-icon {
  width: 7px;
  height: 7px;
  background-color: #FF2A00;
  border-radius: 50%;
  box-shadow: 0 0 8px #FF2A00;
  animation: pulse 1.5s infinite;
}

.register-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 35%, #FFD700 70%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1.15;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.register-subtext {
  font-family: 'Rajdhani', sans-serif;
  color: #ddd;
  font-size: 1.18rem;
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.register-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2.5rem;
}

.benefit-tag {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(220, 225, 245, 0.25);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.benefit-tag:hover {
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.35);
}

.cta-action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.btn-register-cyber {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 1.25rem 3.8rem;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  letter-spacing: 2px;
  color: #000;
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.45);
}

.btn-register-cyber:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.85);
  background: linear-gradient(90deg, #FFFFFF 0%, #FFD700 100%);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-register-cyber:hover .btn-arrow {
  transform: translateX(6px);
}

.legal-notice {
  font-family: 'Rajdhani', sans-serif;
  color: #888;
  font-size: 0.88rem;
}

/* ==========================================================================
   SUBMENÚ DE NAVEGACIÓN RÁPIDA 100% HORIZONTAL EN UNA SOLA LÍNEA
   ========================================================================== */
.event-quick-submenu-bar {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  background: rgba(10, 10, 18, 0.92) !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  border-radius: 12px !important;
  padding: 0.8rem 1rem !important;
}

.quick-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.65rem, 0.85vw, 0.8rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.quick-sub-link:hover {
  background: rgba(255, 215, 0, 0.18);
  border-color: #FFD700;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.quick-sub-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ==========================================================================
   DYNAMIC TAB PANELS WITH SMOOTH CYBERPUNK TRANSITIONS
   ========================================================================== */
.event-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.event-tab-panel.active-tab {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

.quick-sub-link.active-sub-link {
  background: rgba(255, 215, 0, 0.22) !important;
  border-color: #FFD700 !important;
  color: #FFD700 !important;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   WKF CYBERPUNK SCHEDULE MODULE STYLING
   ========================================================================== */
.schedule-cyber-module {
  max-width: 1100px;
  margin: 3.5rem auto;
  background: #050508 !important;
  background-color: #050508 !important;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 12px;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
}

.glow-gold-schedule {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.schedule-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 3;
}

.schedule-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid #FFD700;
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.schedule-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FFFFFF 30%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.schedule-subtitle {
  font-family: 'Rajdhani', sans-serif;
  color: #aaa;
  font-size: 1.1rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 3;
}

@media (min-width: 992px) {
  .schedule-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.day-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.gold-border-card {
  border: 1px solid rgba(255, 215, 0, 0.4);
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), rgba(0,0,0,0));
}

.day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.day-tag {
  background: rgba(255, 255, 255, 0.08);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.gold-tag {
  background: #FFD700;
  color: #000;
}

.day-date {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

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

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 576px) {
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

.highlight-item {
  border-left-color: #FFD700;
}

.final-item {
  border-left-color: #FF2A00;
}

.time-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
}

.gold-badge {
  background: rgba(255, 215, 0, 0.15);
  border-color: #FFD700;
  color: #FFD700;
}

.red-badge {
  background: rgba(255, 42, 0, 0.15);
  border-color: #FF2A00;
  color: #ff6b52;
}

.event-info {
  flex: 1;
}

.event-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.event-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.4;
}

.event-desc strong {
  color: #fff;
}

/* ==========================================================================
   WKF CYBERPUNK WEIGHT CATEGORIES TABLE STYLING (100% FIT NO SCROLL)
   ========================================================================== */
.weight-categories-module {
  position: relative;
  z-index: 3;
}

.weight-table-container {
  overflow: hidden !important;
  width: 100%;
}

.cyber-weight-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: 'Rajdhani', sans-serif;
  margin: 0 auto;
}

.cyber-weight-table th {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-gold);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.55rem, 0.9vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.6rem 0.2rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  word-wrap: break-word;
}

.cyber-weight-table tbody tr {
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s ease;
}

.cyber-weight-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}

.cyber-weight-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.15);
}

.cyber-weight-table td {
  padding: 0.5rem 0.2rem;
  text-align: center;
  font-size: clamp(0.65rem, 1vw, 0.9rem);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cyber-weight-table td.cat-name {
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.6rem, 0.95vw, 0.82rem);
  color: #fff;
  font-weight: 700;
  padding-left: 0.4rem;
  border-left: 3px solid var(--color-gold);
}

.cyber-weight-table td.weight-val {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.65rem, 1vw, 0.88rem);
  font-weight: 700;
}

.cyber-weight-table td.weight-empty {
  color: rgba(255, 255, 255, 0.15);
}

/* ESTILOS DE FONDO OSCURO CYBERPUNK PARA JOTFORM EMBED */
.jotform-embed-container {
  background: #050508 !important;
  background-color: #050508 !important;
  border: 1px solid rgba(255, 215, 0, 0.4) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.95), 0 0 20px rgba(255, 215, 0, 0.2) !important;
  position: relative !important;
  z-index: 3 !important;
}

iframe[id^="JotFormIFrame"] {
  background-color: #050508 !important;
  background: #050508 !important;
  border: none !important;
  border-radius: 8px !important;
  color-scheme: dark !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

/* ESTILOS DEL SELECTOR COMPETIDOR VS CLUB */
.reg-toggle-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reg-toggle-btn.active {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  color: #000;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.6);
}

.reg-toggle-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   CRONÓMETRO DE CUENTA REGRESIVA FUTURISTA (HERO INDEX)
   ========================================================================== */
.hero-countdown-wrapper {
  margin: 1.8rem auto 1rem;
  max-width: 650px;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 215, 0, 0.4);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.2);
  text-align: center;
  position: relative;
  z-index: 5;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-countdown-wrapper:hover {
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 215, 0, 0.35);
}

.countdown-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--color-gold);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.countdown-card {
  flex: 1;
  min-width: 75px;
  max-width: 110px;
  background: rgba(5, 5, 12, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 12px;
  padding: 10px 6px;
  box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.08);
  transition: all 0.3s ease;
}

.countdown-card.highlight-days {
  flex: 1.4;
  min-width: 100px;
  max-width: 145px;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.18), rgba(10, 10, 20, 0.95));
  border: 2px solid #FFD700;
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.45);
  transform: scale(1.06);
}

.countdown-card.highlight-days .countdown-number {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  background: linear-gradient(180deg, #FFFFFF 10%, #FFD700 70%, #FF8800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 0 0 45px rgba(255, 215, 0, 0.6);
  font-weight: 900;
  letter-spacing: 1px;
}

.countdown-card.highlight-days .countdown-label {
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.countdown-card.highlight-sec {
  border-color: rgba(255, 42, 0, 0.5);
  box-shadow: inset 0 0 15px rgba(255, 42, 0, 0.15);
}

.countdown-number {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(180deg, #FFFFFF 20%, var(--color-gold) 80%, #FF8800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.countdown-card.highlight-sec .countdown-number {
  background: linear-gradient(180deg, #FFFFFF 20%, #FF5533 80%, #FF0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 42, 0, 0.5);
}

.countdown-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-cyan);
  text-transform: uppercase;
  margin-top: 4px;
}

.countdown-sep {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-gold);
  animation: countdownPulse 1.5s infinite;
}

@keyframes countdownPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(255,215,0,0.8); }
  50% { opacity: 0.3; text-shadow: 0 0 2px rgba(255,215,0,0.2); }
}

.countdown-footer-info {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #DDD;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .hero-countdown-wrapper {
    padding: 1.2rem 0.6rem;
  }
  .countdown-grid {
    gap: 4px;
  }
  .countdown-card {
    min-width: 60px;
    padding: 8px 3px;
  }
  .countdown-card.highlight-days {
    min-width: 85px;
    padding: 8px 4px;
    transform: scale(1.02);
  }
  .countdown-number {
    font-size: 1.5rem;
  }
  .countdown-card.highlight-days .countdown-number {
    font-size: 1.85rem;
  }
  .countdown-sep {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   APP-LIKE MOBILE RESPONSIVE ENHANCEMENTS (PWA / NATIVE APP FEEL)
   ========================================================================== */

html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

body.cyber-theme {
  overscroll-behavior-y: contain;
  -webkit-font-smoothing: antialiased;
}

/* Feedback táctil nativo tipo App */
.btn-cyber, .admin-tab-btn, .reg-mode-btn, .nav-link, button, a.btn-cyber {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-cyber:active, .admin-tab-btn:active, .reg-mode-btn:active, button:active {
  transform: scale(0.95) !important;
  opacity: 0.9;
}

/* Control de zoom automático en iOS Safari */
input, select, textarea {
  font-size: 16px !important;
  touch-action: manipulation;
}

/* Scrollbar fluido cyber tipo App */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: rgba(5, 5, 12, 0.95);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.4);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ADAPTACIÓN ULTRA-RESPONSIVE PARA TABLETS Y MÓVILES (ESTILO APP NATIVA) */
@media (max-width: 1024px) {
  .admin-container {
    padding: 85px 14px 40px !important;
  }
}

@media (max-width: 768px) {
  .glass-nav {
    padding: 8px 12px !important;
  }
  
  .nav-container {
    gap: 8px !important;
  }

  .brand-text .brand-name {
    font-size: 0.95rem !important;
  }
  
  .brand-text .brand-sub {
    display: none !important;
  }

  .nav-links {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px 0;
    gap: 10px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
  }

  /* Barra de pestañas deslizables estilo App en móvil */
  .admin-nav-tabs {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap;
    gap: 8px !important;
    padding-bottom: 8px !important;
    border-bottom: 1.5px solid rgba(255, 215, 0, 0.2) !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .admin-nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .admin-tab-btn {
    flex: 0 0 auto !important;
    padding: 8px 14px !important;
    font-size: 0.78rem !important;
    border-radius: 20px !important;
  }

  /* Tarjetas de estadísticas compactas estilo app */
  .stats-header-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .stat-card-box {
    padding: 8px 4px !important;
    border-radius: 8px !important;
  }

  .stat-num {
    font-size: 1.35rem !important;
  }

  /* Cuadrícula de tarjetas de arena adaptable */
  #brackets-render-container > div {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .glass-panel {
    padding: 1rem !important;
    border-radius: 10px !important;
  }

  .admin-tab-content button.btn-cyber {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* BARRA DE NAVEGACIÓN INFERIOR MÓVIL (ESTILO APP NATIVA PWA) */
.mobile-app-navbar {
  display: none;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 75px !important;
  }

  .mobile-app-navbar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(8, 10, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1.5px solid rgba(255, 215, 0, 0.4);
    z-index: 99999;
    justify-content: space-around;
    align-items: center;
    padding: 0 4px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.9);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8899ac;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 3px;
    flex: 1;
    height: 100%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-app-nav-item i {
    font-size: 1.25rem;
  }

  .mobile-app-nav-item.active, .mobile-app-nav-item:active {
    color: var(--color-gold);
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.8);
  }

  .mobile-app-nav-item.active i {
    transform: translateY(-2px);
  }

  /* En móviles y tablets, permitir desplazamiento suave de enlaces o menú desplegable */
  .glass-nav .nav-links {
    display: flex;
    overflow-x: auto;
    max-width: calc(100vw - 120px);
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .glass-nav .nav-links::-webkit-scrollbar {
    display: none;
  }
}

/* SISTEMA DE MENÚ HAMBURGUESA MÓVIL (TRES RAYITAS) */
.mobile-hamburger-btn {
  display: none;
  background: rgba(255, 215, 0, 0.15);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  z-index: 100000;
}

.mobile-hamburger-btn:active {
  transform: scale(0.92);
  background: rgba(255, 215, 0, 0.3);
}

@media (max-width: 1024px) {
  .mobile-hamburger-btn {
    display: flex !important;
  }
}

/* MENÚ DESPLEGABLE TIPO DRAWER AL PULSAR LAS TRES RAYITAS */
.mobile-drawer-overlay {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(6, 8, 16, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  overflow-y: auto;
  border-bottom: 2px solid var(--color-gold);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.95);
}

.mobile-drawer-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.mobile-drawer-link i {
  font-size: 1.25rem;
  width: 26px;
  text-align: center;
}

.mobile-drawer-link:active, .mobile-drawer-link.active {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
}





