/* ========================================
   VOLT - MMORPG LANDING PAGE
   Premium UI/UX Design
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Couleurs principales - Palette Or/Émeraude basée sur le logo */
  --primary: #d4a520;
  --primary-light: #f0c040;
  --primary-dark: #b8922e;
  --primary-glow: rgba(212, 165, 32, 0.4);
  
  --accent: #3ec97a;
  --accent-light: #50d88a;
  --accent-dark: #2ba85f;
  
  --gold: #d4a520;
  --gold-light: #f0c040;
  --gold-dark: #b8922e;
  
  --emerald: #2ecc71;
  --emerald-dark: #1a3a2f;
  
  --discord: #5865F2;
  --discord-hover: #4752c4;
  
  /* Couleurs de fond */
  --bg-dark: #0a0a0f;
  --bg-primary: #0f1115;
  --bg-secondary: #15181e;
  --bg-card: #1a1d24;
  --bg-card-hover: #22262f;
  
  /* Couleurs de texte */
  --text-primary: #ffffff;
  --text-secondary: #c9d1d9;
  --text-muted: #8b949e;
  --text-dark: #6b7280;
  
  /* Bordures et ombres */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(137, 184, 32, 0.3);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--primary-glow);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Espacements grille 6-colonnes */
  --container-max: 1400px;
  --container-padding: 2rem;
  --grid-gap: 1.5rem;
  
  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-display-weight: 900;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Lexend', sans-serif;
  --font-ui: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, li {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== CONTAINER & GRID ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-2 {
max-width: 1100px;
  margin: 0 auto;
padding: 0px 20px;
}

/* Grille de 6 colonnes */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--grid-gap);
}

/* ========== ANIMATIONS GLOBALES ========== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

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

@keyframes glow {
  0%, 100% { 
    filter: drop-shadow(0 0 20px var(--primary-glow));
    opacity: 0.8;
  }
  50% { 
    filter: drop-shadow(0 0 40px var(--primary-glow));
    opacity: 1;
  }
}

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

@keyframes particleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-80vh) scale(0.3);
    opacity: 0;
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

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

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* border-bottom: 1px solid var(--border-light); */
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  transition: transform var(--transition-normal);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation centrale */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.5rem;
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid var(--border-light);
}

.nav-link {
  position: relative;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.nav-link-text {
  position: relative;
  z-index: 2;
}

.nav-link-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--primary-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover .nav-link-glow,
.nav-link.active .nav-link-glow {
  opacity: 0.3;
}

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

/* Actions droite */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.nav-social-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-social-btn.discord:hover {
  color: var(--discord);
  border-color: rgba(88, 101, 242, 0.3);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.nav-social-btn.twitter:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Sélecteur de langue */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all var(--transition-normal);
}

.lang-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.lang-btn span {
  text-transform: uppercase;
}

.lang-arrow {
  transition: transform var(--transition-normal);
}

.lang-btn:hover .lang-arrow {
  transform: translateY(2px);
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 140px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.2s ease;
}

.lang-menu.show {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.lang-option:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
  color: var(--gold);
  font-weight: 600;
}

/* Menu mobile button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  z-index: 1100;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
}

.mobile-menu-overlay.show {
  display: block;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  animation: fadeIn var(--transition-normal);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  animation: slideInRight var(--transition-normal);
  box-shadow: var(--shadow-xl);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-logo img {
  height: 32px;
  width: auto;
}

.mobile-logo span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}

.mobile-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.mobile-close-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.mobile-nav-link {
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
  transition: all var(--transition-normal);
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0ms; }
.mobile-nav-link:nth-child(2) { animation-delay: 50ms; }
.mobile-nav-link:nth-child(3) { animation-delay: 100ms; }
.mobile-nav-link:nth-child(4) { animation-delay: 150ms; }
.mobile-nav-link:nth-child(5) { animation-delay: 200ms; }

.mobile-nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-socials {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
}

.mobile-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all var(--transition-normal);
}

.mobile-social-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-lang-selector {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
}

.mobile-lang-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.mobile-lang-options {
  display: flex;
  gap: 0.5rem;
}

.mobile-lang-btn {
  flex: 1;
  padding: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all var(--transition-normal);
}

.mobile-lang-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 165, 32, 0.1);
}

.mobile-menu-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.mobile-menu-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsive navbar */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-socials {
    display: none;
  }
}

@media (max-width: 500px) {
  .mobile-menu-panel {
    width: 100%;
    max-width: 100%;
  }
  
  .nav-logo-text {
    display: none;
  }
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Layers d'arrière-plan */
.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/backgroundmc.webp') no-repeat center bottom;
  background-size: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.6) 0%,
    rgba(10, 10, 15, 0.4) 40%,
    rgba(10, 10, 15, 0.5) 70%,
    rgba(10, 10, 15, 0.95) 100%
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 15, 0.4) 100%);
}

.hero-light-rays {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 60%;
  background: radial-gradient(ellipse at top center, rgba(212, 165, 32, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Particules */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle-glow {
  width: 4px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--primary-glow);
}

.particle-dust {
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.particle:nth-child(1) { left: 10%; bottom: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; bottom: 5%; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; bottom: 15%; animation-delay: 4s; }
.particle:nth-child(4) { left: 60%; bottom: 8%; animation-delay: 1s; }
.particle:nth-child(5) { left: 80%; bottom: 12%; animation-delay: 3s; }
.particle:nth-child(6) { left: 15%; bottom: 20%; animation-delay: 5s; }
.particle:nth-child(7) { left: 35%; bottom: 25%; animation-delay: 7s; }
.particle:nth-child(8) { left: 55%; bottom: 18%; animation-delay: 6s; }
.particle:nth-child(9) { left: 75%; bottom: 22%; animation-delay: 8s; }
.particle:nth-child(10) { left: 90%; bottom: 15%; animation-delay: 9s; }

/* Contenu Hero */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-grid {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Colonne principale */
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Logo avec effet shiny */
.hero-logo-wrapper {
  position: relative;
  display: inline-block;
  max-width: 400px;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(212, 165, 32, 0.3), transparent 60%);
  opacity: 0.5;
  animation: glow 4s ease-in-out infinite;
  z-index: 1;
}

.hero-logo-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  z-index: 3;
  animation: shimmer 3s ease-in-out infinite;
  animation-delay: 2s;
}

/* Titres */
.hero-titles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.title-line {
  display: block;
}

.title-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
}

/* Countdown */
.hero-countdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.countdown-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item {
  flex-shrink: 0;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(15, 17, 21, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  min-width: 80px;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.countdown-unit {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.countdown-separator {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

/* CTA Primary (Discord) */
.cta-primary {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.cta-primary .cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.cta-primary .cta-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-light), var(--gold-light), var(--primary-light));
  background-size: 200% 200%;
  border-radius: 52px;
  opacity: 0;
  z-index: -1;
  animation: shimmer 3s linear infinite;
  transition: opacity var(--transition-normal);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.cta-primary:hover .cta-bg {
  opacity: 1;
}

.cta-primary:hover .cta-glow {
  opacity: 1;
}

.cta-icon, .cta-text {
  position: relative;
  z-index: 2;
}

/* CTA Secondary (IP) */
.cta-secondary {
  color: var(--text-primary);
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  padding: 0.75rem 1.5rem;
}

.cta-secondary .cta-border {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 52px;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.cta-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.ip-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.ip-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
}

.ip-address {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.ip-copy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  color: var(--gold);
  transition: color var(--transition-fast);
}

.cta-secondary.copied {
  border-color: var(--primary);
}

.cta-secondary.copied .ip-label,
.cta-secondary.copied .ip-copy-icon {
  color: var(--primary);
}

.hidden {
  display: none !important;
}

/* Hero Media (Logo) */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-large {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.hero-logo-img-large {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

.hero-logo-glow-large {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at center, rgba(212, 165, 32, 0.25), transparent 60%);
  opacity: 0.6;
  animation: glow 4s ease-in-out infinite;
  z-index: 1;
}

.hero-logo-shine-large {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  z-index: 3;
  animation: shimmer 4s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-slow);
}

.hero-video-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.video-frame {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  pointer-events: none;
  z-index: 10;
}

.video-frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
}

.video-frame-corner { border-color: var(--gold); }
.video-frame-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; border-radius: 16px 0 0 0; }
.video-frame-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; border-radius: 0 16px 0 0; }
.video-frame-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; border-radius: 0 0 0 16px; }
.video-frame-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; border-radius: 0 0 16px 0; }

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.video-play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.video-play-btn svg {
  color: var(--bg-dark);
  margin-left: 4px;
}

.play-btn-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.video-overlay:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.video-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 6;
}

.hero-video-container:hover .video-controls,
.video-controls.visible {
  opacity: 1;
}

.video-controls.hidden {
  display: none;
}

.video-control-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.video-control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-expand-btn:hover {
  background: rgba(212, 165, 32, 0.3);
  color: var(--gold);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--gold);
}

/* Hero responsive */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 3rem;
  }
  
  .hero-video-container {
    max-width: 400px;
  }
  
  .hero-logo-wrapper {
    max-width: 320px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-main {
    align-items: center;
    order: 2;
  }
  
  .hero-media {
    order: 1;
    margin-bottom: 1rem;
  }
  
  .hero-logo-large {
    max-width: 350px;
  }
  
  .hero-subtitle {
    max-width: 600px;
  }
  
  .countdown {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .scroll-indicator {
    bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 80px;
  }
  
  .hero-logo-large {
    max-width: 280px;
  }
  
  .countdown-box {
    padding: 0.75rem 1rem;
    min-width: 65px;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-separator {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-main {
    gap: 1.5rem;
  }
  
  .hero-logo-large {
    max-width: 220px;
  }
  
  .countdown {
    gap: 0.35rem;
  }
  
  .countdown-box {
    padding: 0.6rem 0.8rem;
    min-width: 55px;
    border-radius: 10px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-unit {
    font-size: 0.55rem;
  }
  
  .countdown-separator {
    font-size: 1.2rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* ========== VIDEO MODAL ========== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

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

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1100px;
  z-index: 1;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-bounce);
}

.video-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.video-modal-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.modal-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}

/* ========== FEATURES SECTION ========== */
.features-section {
  position: relative;
  padding: 120px 0 140px;
  background: var(--bg-primary);
  overflow: hidden;
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(212, 165, 32, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(46, 204, 113, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(212, 165, 32, 0.1);
  border: 1px solid rgba(212, 165, 32, 0.25);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.text-accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 165, 32, 0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 165, 32, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 165, 32, 0.12) 0%, rgba(212, 165, 32, 0.04) 100%);
  border: 1px solid rgba(212, 165, 32, 0.2);
  border-radius: 16px;
  color: var(--gold);
  transition: all var(--transition-normal);
}

.feature-icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at center, var(--primary-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(212, 165, 32, 0.2) 0%, rgba(212, 165, 32, 0.08) 100%);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--primary-glow);
}

.feature-card:hover .feature-icon-glow {
  opacity: 0.5;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, rgba(212, 165, 32, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Features responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}

/* ========== GAMEPLAY / FEATURES SECTION ========== */
.gameplay-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  min-height: auto;
}

.gameplay-section .container {
  position: relative;
  z-index: 2;
}

.gameplay-section .section-header {
  position: relative;
  z-index: 2;
}

/* Background */
.gameplay-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gameplay-bg-gradient {
  position: absolute;
  inset: 0;
background: var(--bg-primary);
}


/*
.gameplay-character {
position: absolute;
  right: 20%;
  top: 71%;
  transform: translateY(-30%);
  width: 38%;
  max-width: 470px;
  z-index: 3;
  pointer-events: none;
} */
 .gameplay-character {
  position: absolute;
  right: 23%;
  top: 71%;
  transform: translateY(-30%);
  width: 38%;
  max-width: 400px;
  z-index: 3;
  pointer-events: none;
}

.gameplay-character img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

.gameplay-character-glow {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, 
    rgba(100, 160, 220, 0.2) 0%, 
    transparent 60%
  );
  filter: blur(40px);
  z-index: -1;
}

.gameplay-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  width: 100%;
}

.gp-feature {
  padding: 3rem 3.5rem;
  position: relative;
}
.gp-feature:nth-child(1),
.gp-feature:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gp-feature:nth-child(4) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gp-feature:nth-child(1),
.gp-feature:nth-child(2),
.gp-feature:nth-child(3) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gp-feature:nth-child(4),
.gp-feature:nth-child(5) {
  grid-column: span 1;
}

.gp-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
}

.gp-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gp-feature h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 1rem;
}

/* Description */
.gp-feature p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Hover */
.gp-feature {
  transition: background var(--transition-normal);
}

.gp-feature:hover {
  background: rgba(255, 255, 255, 0.02);
}

.gp-feature:hover h3 {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1200px) {
  .gameplay-character {
    width: 35%;
    right: 5%;
  }
  
  .gameplay-grid {
    max-width: 100%;
  }
  
  .gp-feature {
    padding: 2.5rem 2.5rem;
  }
}

@media (max-width: 1024px) {
  .gameplay-section {
    padding: 100px 0 80px;
  }
  
  .gameplay-character {
    display: none;
  }
  
  .gameplay-grid {
    max-width: 100%;
  }
  
  .gameplay-section .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  
  .section-desc {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .gameplay-section {
    padding: 60px 0;
  }
  
  .gameplay-section .section-header {
    margin-bottom: 2rem;
  }
  
  .section-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.75rem);
    margin-bottom: 0.75rem;
  }
  
  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .gameplay-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Reset borders for mobile */
  .gp-feature {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  
  .gp-feature:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
  
  .gp-feature:last-child {
    border-bottom: none !important;
    grid-column: span 2;
  }
  
  .gp-feature {
    padding: 1.5rem;
  }
  
  .gp-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .gp-feature h3 {
    font-size: 0.85rem;
  }
  
  .gp-feature p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gameplay-section {
    padding: 50px 0;
  }
  
  .gameplay-section .section-header {
    margin-bottom: 1.5rem;
  }
  
  .section-badge {
    font-size: 0.6rem;
    padding: 0.35rem 0.9rem;
    letter-spacing: 1.5px;
  }
  
  .section-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .section-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .gameplay-grid {
    grid-template-columns: 1fr;
  }
  
  .gp-feature {
    border-right: none !important;
  }
  
  .gp-feature:last-child {
    grid-column: span 1;
  }
}

/* ========== EVENTS SECTION ========== */
.events-section {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
}

.events-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.events-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/bg2.webp') no-repeat center center;
  background-size: cover;
}

.events-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.95) 0%,
    rgba(10, 10, 15, 0.85) 50%,
    rgba(10, 10, 15, 0.9) 100%
  );
}

.events-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Visual côté gauche */
.events-visual {
  display: flex;
  justify-content: center;
}

.events-creature {
  position: relative;
  max-width: 450px;
}

.creature-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

.creature-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(212, 165, 32, 0.12), transparent 60%);
  pointer-events: none;
}

/* Contenu droite */
.events-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.events-intro {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1rem 0;
}

.event-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.event-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.event-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.event-icon.blood-moon {
  background: rgba(220, 38, 38, 0.15);
  color: #ef4444;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.event-icon.meteor {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.event-icon.corruption {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.event-item:hover {
  border-color: rgba(212, 165, 32, 0.2);
}

.event-item:hover .event-icon {
  transform: scale(1.1);
}

.event-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.event-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Outline */
.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 50px;
  transition: all var(--transition-normal);
  width: fit-content;
}

.cta-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.cta-outline svg {
  transition: transform var(--transition-normal);
}

.cta-outline:hover svg {
  transform: translateX(4px);
}

/* Events responsive */
@media (max-width: 1024px) {
  .events-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .events-visual {
    order: 2;
  }
  
  .events-content {
    text-align: center;
    align-items: center;
  }
  
  .events-creature {
    max-width: 350px;
  }
  
  .event-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 80px 0;
  }
  
  .events-visual {
    display: none;
  }
  
  .event-item {
    padding: 1rem;
    gap: 1rem;
  }
  
  .event-icon {
    width: 42px;
    height: 42px;
  }
}

/* ========== COMMUNITY SECTION ========== */
.community-section {
  position: relative;
  padding: 120px 0 140px;
  background: url('images/bg9.webp') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.community-bg-gradient {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.community-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.community-decoration {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.8;
  animation: float 5s ease-in-out infinite;
  pointer-events: none;
}

.community-decoration img {
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.community-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 550px;
}

/* Stats */
.community-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  margin: 1rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* CTA Discord */
.cta-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--discord);
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(88, 101, 242, 0.4);
  transition: all var(--transition-normal);
}

.cta-discord:hover {
  background: var(--discord-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(88, 101, 242, 0.5);
}

/* Social links */
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.social-link img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-link:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.social-link[data-available="false"] {
  cursor: not-allowed;
}

.social-link[data-available="false"]:hover {
  transform: none;
}

.social-link[data-available="false"]:hover img {
  filter: grayscale(50%);
  opacity: 0.5;
  transform: none;
}

/* Community responsive */
@media (max-width: 1100px) {
  .community-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .community-section {
    padding: 80px 0;
  }
  
  .community-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 20px;
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 500px) {
  .community-desc {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .cta-discord {
    width: 100%;
    justify-content: center;
  }
  
  .social-links {
    gap: 0.75rem;
  }
  
  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  padding: 80px 0 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(212, 165, 32, 0.02), transparent);
  pointer-events: none;
}

.footer-content {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

/* Footer brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer links */
.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-group a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--gold);
}

/* Footer social */
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.footer-social-links a:hover {
  color: var(--gold);
  border-color: rgba(212, 165, 32, 0.3);
  background: rgba(212, 165, 32, 0.1);
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links-group ul {
    align-items: center;
  }
  
  .footer-social-links {
    justify-content: center;
  }
}

/* ========== TOAST NOTIFICATION ========== */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 165, 32, 0.3);
  border-radius: 50px;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 165, 32, 0.15);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-bounce);
  backdrop-filter: blur(10px);
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast-notification svg {
  color: var(--gold);
  flex-shrink: 0;
}

.toast-notification span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ========== CANVAS (Thunder effect) ========== */
canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 5;
}

/* ========== SECTION TRANSITIONS ========== */
.section-transition {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 5;
}

.transition-fade-down {
  bottom: 0;
  height: 200px;
  background: linear-gradient(to bottom, 
    transparent 0%,
    rgba(15, 17, 21, 0.3) 30%,
    rgba(15, 17, 21, 0.7) 60%,
    var(--bg-primary) 100%
  );
}

.section-transition-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 125px;
  pointer-events: none;
  z-index: 10;
}

.section-transition-gradient.to-dark {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10, 10, 15, 0.4) 40%,
    rgba(10, 10, 15, 0.8) 70%,
    var(--bg-dark) 100%
  );
}

.section-transition-gradient.to-community {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.section-transition-gradient.to-footer {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10, 10, 15, 0.4) 40%,
    rgba(10, 10, 15, 0.8) 70%,
    var(--bg-dark) 100%
  );
}

/* Transition de features vers community - simule l'effet de hero vers features */
.section-transition-gradient.to-community-from-features {
  height: 200px;
  background: linear-gradient(to bottom, 
    transparent 0%,
    rgba(15, 17, 21, 0.3) 30%,
    rgba(15, 17, 21, 0.7) 60%,
    var(--bg-primary) 100%
  );
}

/* ========== TRANSITIONS VOTE PAGE ========== */

/* Transition hero vers vote-section (vers le rouge) */
.section-transition-gradient.to-vote-red {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(13, 6, 8, 0.3) 30%,
    rgba(13, 6, 8, 0.7) 60%,
    #0d0608 100%
  );
}

/* Transition inverse (en haut de vote-section) - gradient qui part du rouge */
.section-transition-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 125px;
  pointer-events: none;
  z-index: 10;
}

.section-transition-top.from-dark {
  background: linear-gradient(to bottom,
    var(--bg-dark) 0%,
    rgba(10, 10, 15, 0.7) 30%,
    rgba(10, 10, 15, 0.3) 60%,
    transparent 100%
  );
}

/* Transition en haut de community venant de features/gameplay */
.section-transition-top.from-features {
  height: 200px;
  background: linear-gradient(to bottom,
    var(--bg-primary) 0%,
    rgba(15, 17, 21, 0.7) 30%,
    rgba(15, 17, 21, 0.3) 60%,
    transparent 100%
  );
}

/* Transition en haut de community venant de leaderboard */
.section-transition-top.from-leaderboard {
  height: 150px;
  background: linear-gradient(to bottom,
    var(--bg-primary) 0%,
    rgba(15, 17, 21, 0.8) 30%,
    rgba(15, 17, 21, 0.4) 60%,
    transparent 100%
  );
}

/* Transition vote-section vers community footer (du rouge vers le noir) */
.section-transition-gradient.from-vote-red {
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 30%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

/* ========== UTILITIES ========== */
.scroll-to-top {
  cursor: pointer;
}

/* Smooth scrolling for anchor links */
html {
  scroll-padding-top: 100px;
}

/* ========== VOTE PAGE STYLES ========== */

/* Vote Hero Section */
.vote-hero-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vote-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vote-hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/backgroundmc2.webp') no-repeat center center;
  background-size: cover;
}

.vote-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.7) 0%,
    rgba(10, 10, 15, 0.5) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
}

.vote-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 140px 20px 80px;
  max-width: 700px;
  margin: 0 auto;
}

.vote-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.vote-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Vote Section */
.vote-section {
  position: relative;
  background: #0d0608;

  overflow: hidden;
}

.vote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(
      ellipse 120% 80% at 50% 35%,
      rgba(85, 25, 45, 1) 0%,
      rgba(65, 20, 35, 0.85) 25%,
      rgba(45, 14, 25, 0.6) 50%,
      rgba(20, 8, 12, 0.3) 70%,
      transparent 90%
    );
  pointer-events: none;
  z-index: 0;
}

.vote-section > * {
  position: relative;
  z-index: 1;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.vote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all var(--transition-normal);
}

.vote-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 165, 32, 0.3);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 165, 32, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.vote-card-reward {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.3rem 0.7rem;
  background: rgba(212, 165, 32, 0.1);
  border: 1px solid rgba(212, 165, 32, 0.25);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vote-card-logo {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.vote-card:hover .vote-card-logo {
  transform: scale(1.05);
  border-color: rgba(212, 165, 32, 0.2);
}

.vote-card-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.vote-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0.25rem 0;
}

.vote-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(212, 165, 32, 0.25);
  margin-top: 0.5rem;
}

.vote-card-btn:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(212, 165, 32, 0.4);
}

.vote-card-btn svg {
  transition: transform var(--transition-fast);
}

.vote-card-btn:hover svg {
  transform: translateX(3px);
}

/* Vote Info Grid */
.vote-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vote-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  transition: all var(--transition-normal);
}

.vote-info-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 165, 32, 0.2);
}

.vote-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 32, 0.1);
  border: 1px solid rgba(212, 165, 32, 0.2);
  border-radius: 12px;
}

.vote-info-icon svg {
  stroke: var(--gold);
}

.vote-info-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.35rem 0;
}

.vote-info-content p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Vote Footer Section */
.vote-footer-section {
  padding: 100px 0 60px;
}

.vote-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.vote-footer-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.vote-footer-links a:hover {
  color: var(--gold);
}

.vote-footer-links span {
  color: var(--text-dark);
}

.vote-copyright {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-top: 1.5rem;
}

/* Vote Page Responsive */
@media (max-width: 1024px) {
  .vote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .vote-hero-section {
    min-height: 40vh;
  }
  
  .vote-hero-content {
    padding: 120px 15px 60px;
  }
  
  .vote-section {
    padding: 60px 0 100px;
  }
  
  .vote-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .vote-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vote-card {
    padding: 1.5rem 1rem 1.25rem;
  }
  
  .vote-card-logo {
    width: 60px;
    height: 60px;
  }
  
  .vote-card-logo img {
    width: 44px;
    height: 44px;
  }
  
  .vote-footer-section {
    padding: 80px 0 50px;
  }
}

@media (max-width: 500px) {
  .vote-hero-section {
    min-height: 35vh;
  }
  
  .vote-hero-content {
    padding: 100px 12px 50px;
  }
  
  .vote-hero-subtitle {
    font-size: 0.95rem;
  }
  
  .vote-section {
    padding: 50px 0 80px;
  }
  
  .vote-grid {
    gap: 0.75rem;
  }
  
  .vote-card {
    padding: 1.25rem 0.75rem 1rem;
    border-radius: 12px;
  }
  
  .vote-card-logo {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }
  
  .vote-card-logo img {
    width: 38px;
    height: 38px;
  }
  
  .vote-card-name {
    font-size: 0.8rem;
  }
  
  .vote-card-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.7rem;
  }
  
  .vote-card-reward {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    top: 8px;
    right: 8px;
  }
  
  .vote-info-card {
    padding: 1.25rem;
  }
  
  .vote-info-icon {
    width: 44px;
    height: 44px;
  }
  
  .vote-footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .vote-footer-links span {
    display: none;
  }
}
.leaderboard-hero-section {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leaderboard-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.85) 50%, var(--bg-primary) 100%),
    url('images/backgroundmc.webp') center center / cover no-repeat;
  z-index: 0;
}

.leaderboard-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212, 165, 32, 0.08) 0%, transparent 60%);
}

.leaderboard-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 140px 20px 80px;
  max-width: 700px;
  margin: 0 auto;
}

.leaderboard-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.leaderboard-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.leaderboard-section {
  position: relative;
  background: var(--bg-primary);
  padding: 60px 0 120px;
  overflow: hidden;
}

.server-stats-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.server-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.server-stat-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  position: relative;
}

.server-stat-icon svg {
  stroke: var(--text-muted);
}

.server-stat-icon.skull svg {
  stroke: #ef4444;
}

.server-stat-icon.boss svg {
  stroke: var(--gold);
}

.server-stat-icon.online svg {
  stroke: var(--emerald);
}

.online-pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.server-stat-info {
  display: flex;
  flex-direction: column;
}

.server-stat-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.server-stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.leaderboard-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.leaderboard-tabs {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.leaderboard-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.leaderboard-tab:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.leaderboard-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 165, 32, 0.3);
}

.leaderboard-tab.active svg {
  stroke: var(--bg-dark);
}

.leaderboard-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all var(--transition-normal);
}

.leaderboard-search:focus-within {
  border-color: rgba(212, 165, 32, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.leaderboard-search svg {
  stroke: var(--text-muted);
  flex-shrink: 0;
}

.leaderboard-search input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  width: 200px;
}

.leaderboard-search input::placeholder {
  color: var(--text-dark);
}

.podium-section {
  margin-bottom: 3rem;
}

.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
}

.podium-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  position: relative;
  transition: all var(--transition-normal);
}

.podium-player:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
}

.podium-player.gold {
  order: 2;
  padding-top: 3.5rem;
  background: linear-gradient(180deg, rgba(212, 165, 32, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(212, 165, 32, 0.3);
  box-shadow: 0 0 40px rgba(212, 165, 32, 0.15);
}

.podium-player.gold:hover {
  box-shadow: 0 0 60px rgba(212, 165, 32, 0.25);
}

.podium-crown {
  position: absolute;
  top: -16px;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(212, 165, 32, 0.5));
  animation: float 3s ease-in-out infinite;
}

.podium-player.silver {
  order: 1;
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(192, 192, 192, 0.2);
}

.podium-player.bronze {
  order: 3;
  background: linear-gradient(180deg, rgba(205, 127, 50, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(205, 127, 50, 0.2);
}

.podium-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.podium-player.gold .podium-avatar {
  width: 100px;
  height: 100px;
}

.podium-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid var(--border-color);
}

.podium-player.gold .podium-avatar img {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 165, 32, 0.4);
}

.podium-player.silver .podium-avatar img {
  border-color: #c0c0c0;
}

.podium-player.bronze .podium-avatar img {
  border-color: #cd7f32;
}

.podium-rank-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.podium-player.gold .podium-rank-badge {
  background: var(--gold);
  border-color: var(--gold-light);
  color: var(--bg-dark);
}

.podium-player.silver .podium-rank-badge {
  background: #c0c0c0;
  border-color: #e0e0e0;
  color: var(--bg-dark);
}

.podium-player.bronze .podium-rank-badge {
  background: #cd7f32;
  border-color: #dfa063;
  color: var(--bg-dark);
}

.podium-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.podium-player.gold .podium-name {
  font-size: 1.15rem;
  color: var(--gold-light);
}

.podium-stat {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.podium-player.gold .podium-stat {
  font-size: 1.75rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.podium-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.podium-bar {
  display: none;
}

.gold-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.silver-bar {
  background: linear-gradient(90deg, #a0a0a0, #c0c0c0, #e0e0e0, #c0c0c0, #a0a0a0);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.bronze-bar {
  background: linear-gradient(90deg, #8b5a2b, #cd7f32, #dfa063, #cd7f32, #8b5a2b);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.leaderboard-table-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.leaderboard-table-header {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 100px;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leaderboard-table {
  max-height: 500px;
  overflow-y: auto;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 100px;
  gap: 1rem;
  padding: 1rem 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.leaderboard-row:last-child {
  border-bottom: none;
}

.leaderboard-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/*
.leaderboard-row.highlight {
  background: rgba(212, 165, 32, 0.05);
  border-left: 3px solid var(--gold);
} */

.row-rank {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.row-rank.top-10 {
  color: var(--gold);
}

/* ===== STYLES TOP 3 ===== */
.row-rank .rank-medal {
  flex-shrink: 0;
}

.row-rank.top-3 {
  font-size: 1.1rem;
}

/* Rang 1 - Or */
.leaderboard-row.rank-gold {
  background: linear-gradient(90deg, rgba(212, 165, 32, 0.12) 0%, rgba(212, 165, 32, 0.03) 100%);
  border-left: 4px solid var(--gold);
  position: relative;
}

.leaderboard-row.rank-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(212, 165, 32, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.leaderboard-row.rank-gold:hover {
  background: linear-gradient(90deg, rgba(212, 165, 32, 0.18) 0%, rgba(212, 165, 32, 0.06) 100%);
}

.leaderboard-row.rank-gold .row-rank {
  color: var(--gold);
}

.leaderboard-row.rank-gold .row-rank .rank-medal {
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(212, 165, 32, 0.5));
  animation: goldShine 3s ease-in-out infinite;
}

.leaderboard-row.rank-gold .row-player-name {
  color: var(--gold);
  font-size: 1rem;
}

.leaderboard-row.rank-gold .row-avatar-wrapper {
  position: relative;
}

.leaderboard-row.rank-gold .row-avatar {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 165, 32, 0.4);
}

/* Rang 2 - Argent */
.leaderboard-row.rank-silver {
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.02) 100%);
  border-left: 4px solid #c0c0c0;
}

.leaderboard-row.rank-silver:hover {
  background: linear-gradient(90deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.05) 100%);
}

.leaderboard-row.rank-silver .row-rank {
  color: #c0c0c0;
}

.leaderboard-row.rank-silver .row-rank .rank-medal {
  color: #c0c0c0;
  filter: drop-shadow(0 0 4px rgba(192, 192, 192, 0.4));
}

.leaderboard-row.rank-silver .row-player-name {
  color: #e8e8e8;
}

.leaderboard-row.rank-silver .row-avatar {
  border-color: #c0c0c0;
  box-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
}

/* Rang 3 - Bronze */
.leaderboard-row.rank-bronze {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.1) 0%, rgba(205, 127, 50, 0.02) 100%);
  border-left: 4px solid #cd7f32;
}

.leaderboard-row.rank-bronze:hover {
  background: linear-gradient(90deg, rgba(205, 127, 50, 0.15) 0%, rgba(205, 127, 50, 0.05) 100%);
}

.leaderboard-row.rank-bronze .row-rank {
  color: #cd7f32;
}

.leaderboard-row.rank-bronze .row-rank .rank-medal {
  color: #cd7f32;
  filter: drop-shadow(0 0 4px rgba(205, 127, 50, 0.4));
}

.leaderboard-row.rank-bronze .row-player-name {
  color: #dda15e;
}

.leaderboard-row.rank-bronze .row-avatar {
  border-color: #cd7f32;
  box-shadow: 0 0 8px rgba(205, 127, 50, 0.3);
}

@keyframes goldShine {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(212, 165, 32, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(212, 165, 32, 0.8));
  }
}

.row-player {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.row-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  object-fit: cover;
}

.row-player-info {
  display: flex;
  flex-direction: column;
}

.row-player-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.row-player-guild {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.row-stat {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.row-kd {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.row-kd.positive {
  color: var(--emerald);
}

.row-kd.negative {
  color: #ef4444;
}

.row-trend {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

.row-trend.up {
  color: var(--emerald);
}

.row-trend.down {
  color: #ef4444;
}

.row-trend.stable {
  color: var(--text-muted);
}

.leaderboard-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination-btn:hover:not(:disabled) {
  background: rgba(212, 165, 32, 0.1);
  border-color: rgba(212, 165, 32, 0.3);
  color: var(--gold);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-info {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.leaderboard-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.leaderboard-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  transition: all var(--transition-normal);
}

.leaderboard-info-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 165, 32, 0.2);
}

.leaderboard-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 32, 0.1);
  border: 1px solid rgba(212, 165, 32, 0.2);
  border-radius: 12px;
}

.leaderboard-info-icon svg {
  stroke: var(--gold);
}

.leaderboard-info-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.35rem 0;
}

.leaderboard-info-content p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.leaderboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 1rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

.loading-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .leaderboard-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .leaderboard-tabs {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .leaderboard-search {
    width: 100%;
  }
  
  .leaderboard-search input {
    width: 100%;
  }
  
  .leaderboard-table-header,
  .leaderboard-row {
    grid-template-columns: 60px 1fr 100px 80px;
  }
  
  .col-trend,
  .row-trend {
    display: none;
  }
  
  .leaderboard-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .leaderboard-hero-section {
    min-height: 35vh;
  }
  
  .leaderboard-hero-content {
    padding: 120px 15px 60px;
  }
  
  .leaderboard-section {
    padding: 40px 0 100px;
  }
  
  .server-stats-bar {
    gap: 1rem;
    padding: 1rem;
  }
  
  .server-stat-value {
    font-size: 1rem;
  }
  
  .podium-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .podium-player {
    width: 100%;
    max-width: 280px;
    order: unset !important;
  }
  
  .podium-player.gold {
    order: -1 !important;
  }
  
  .leaderboard-tabs {
    width: 100%;
  }
  
  .leaderboard-tab {
    flex: 1;
    justify-content: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .leaderboard-tab span {
    display: none;
  }
  
  .leaderboard-tab svg {
    width: 20px;
    height: 20px;
  }
  
  .leaderboard-table-header,
  .leaderboard-row {
    grid-template-columns: 50px 1fr 80px;
  }
  
  .col-kd,
  .row-kd {
    display: none;
  }
  
  .row-avatar {
    width: 32px;
    height: 32px;
  }
  
  .row-player-name {
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .leaderboard-hero-content {
    padding: 100px 12px 50px;
  }
  
  .leaderboard-hero-subtitle {
    font-size: 0.95rem;
  }
  
  .server-stats-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .server-stat {
    justify-content: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .server-stat:last-child {
    border-bottom: none;
  }
  
  .podium-player {
    padding: 1.5rem;
  }
  
  .podium-avatar {
    width: 60px;
    height: 60px;
  }
  
  .podium-player.gold .podium-avatar {
    width: 80px;
    height: 80px;
  }
  
  .podium-stat {
    font-size: 1.25rem;
  }
  
  .podium-player.gold .podium-stat {
    font-size: 1.5rem;
  }
  
  .leaderboard-table-header {
    padding: 0.75rem 1rem;
  }
  
  .leaderboard-row {
    padding: 0.75rem 1rem;
  }
}

.leaderboard-table::-webkit-scrollbar {
  width: 6px;
}

.leaderboard-table::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.leaderboard-table::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.leaderboard-table::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

.online-indicator {
  color: var(--emerald);
  font-size: 0.7em;
  margin-left: 0.35rem;
  animation: pulse 2s infinite;
}

.row-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.row-online-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--emerald);
  border: 2px solid var(--bg-card);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.leaderboard-row.is-online {
  /* Plus de background coloré */
}

.leaderboard-row.is-online:hover {
  background: rgba(255, 255, 255, 0.03);
}

.row-player-playtime {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-dark);
}

.row-trend.online {
  color: var(--emerald);
}

.row-trend.offline {
  color: var(--text-dark);
}

.leaderboard-empty,
.leaderboard-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.leaderboard-empty p,
.leaderboard-error .error-text {
  font-family: var(--font-body);
  font-size: 1rem;
  margin: 0;
}

.leaderboard-empty .empty-subtitle {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-top: 0.5rem;
}

.leaderboard-error svg {
  stroke: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}

#refresh-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

#refresh-btn:hover {
  background: rgba(212, 165, 32, 0.1);
  border-color: rgba(212, 165, 32, 0.3);
}

#refresh-btn svg {
  stroke: var(--text-secondary);
  transition: all var(--transition-fast);
}

#refresh-btn:hover svg {
  stroke: var(--gold);
}

#refresh-btn.spinning svg {
  animation: rotate 0.5s linear infinite;
}

#last-updated {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-dark);
  text-align: center;
  margin-top: 1rem;
}

.coming-soon-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.coming-soon-icon {
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
  }
}

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.coming-soon-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.coming-soon-toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(20, 22, 27, 0.95);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.coming-soon-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.coming-soon-toast svg {
  color: var(--gold);
  flex-shrink: 0;
}
