/* ====================================================
   BLAINE COUNTY — Feuille de style globale v2.0
   Style: Dark Gaming / Cyberpunk Gold — Premium Edition
   ==================================================== */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

/* === VARIABLES === */
:root {
  --bg-primary:    #08090e;
  --bg-secondary:  #0c0e17;
  --bg-card:       #111320;
  --bg-card-hover: #151828;
  --bg-glass:      rgba(12, 14, 23, 0.75);
  --gold:          #e8c84a;
  --gold-light:    #f5db6e;
  --gold-dark:     #b89c2a;
  --gold-dim:      rgba(232, 200, 74, 0.12);
  --gold-glow:     rgba(232, 200, 74, 0.18);
  --gold-glow-lg:  rgba(232, 200, 74, 0.08);
  --red:           #ff4b4b;
  --red-glow:      rgba(255, 75, 75, 0.25);
  --white:         #f0f2f8;
  --text:          #bec8e4;
  --text-muted:    #50597a;
  --text-subtle:   #3a4060;
  --border:        #181b2c;
  --border-med:    #1e2235;
  --border-hover:  rgba(232, 200, 74, 0.3);
  --nav-height:    64px;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     12px;
  --radius-xl:     16px;
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow:        0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg:     0 16px 56px rgba(0, 0, 0, 0.6);
  --shadow-gold:   0 0 32px rgba(232, 200, 74, 0.12), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-gold-lg:0 0 60px rgba(232, 200, 74, 0.15);
  --transition:    0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-lg: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --spring:        0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  --mono:          'Share Tech Mono', monospace;
  --heading:       'Bebas Neue', sans-serif;
  --body:          'Rajdhani', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === SKIP LINK === */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: #08090e;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === SELECTION === */
::selection {
  background: rgba(232, 200, 74, 0.2);
  color: var(--white);
}

/* === CUSTOM CURSOR === */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(232, 200, 74, 0.5);
  border-radius: 50%;
  transition: width 0.35s var(--ease-out-expo),
              height 0.35s var(--ease-out-expo),
              border-color 0.2s,
              opacity 0.2s;
}
body.cursor-hover .cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--gold-light);
}
body.cursor-hover .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: rgba(232, 200, 74, 0.8);
}
body.cursor-click .cursor-dot {
  width: 4px;
  height: 4px;
}
body.cursor-click .cursor-ring {
  width: 24px;
  height: 24px;
}

/* === PAGE TRANSITION === */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#page-transition.visible { opacity: 1; }

/* === LOADING SCREEN === */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading-screen.fade-out { opacity: 0; visibility: hidden; }

.loading-emblem {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--border-med);
  border-radius: 50%;
}
.loading-ring-spin {
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinRing 1s linear infinite;
}
.loading-ring-spin-rev {
  position: absolute;
  inset: 6px;
  border: 1px solid transparent;
  border-bottom-color: rgba(232,200,74,0.4);
  border-radius: 50%;
  animation: spinRing 1.5s linear infinite reverse;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

.loading-bc {
  font-family: var(--heading);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.loading-logo {
  font-family: var(--heading);
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--white);
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.loading-logo span { color: var(--gold); }
.loading-logo-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.loading-progress {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.loading-bar {
  width: 100%;
  height: 1.5px;
  background: var(--border-med);
  overflow: hidden;
  border-radius: 1px;
}
.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: loadProgress 1.6s var(--ease-out-expo) forwards;
}
.loading-pct {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
@keyframes loadProgress { from { width: 0; } to { width: 100%; } }

/* === NAVIGATION === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8, 9, 14, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: rgba(232, 200, 74, 0.12);
  box-shadow: 0 1px 0 rgba(232, 200, 74, 0.06), 0 4px 24px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.nav-logo-badge {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(232,200,74,0.4);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  font-size: 1.1rem;
  color: var(--gold);
  background: rgba(232,200,74,0.04);
  transition: all var(--transition);
}
.nav-logo:hover .nav-logo-badge {
  border-color: var(--gold);
  background: rgba(232,200,74,0.1);
  box-shadow: 0 0 20px rgba(232,200,74,0.2);
}
.nav-logo-text {
  font-family: var(--heading);
  font-size: 1.55rem;
  letter-spacing: 5px;
  color: var(--gold);
  transition: color var(--transition);
}
.nav-logo-text span { color: var(--white); }
.nav-logo-sub {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: -3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: scale(0);
  animation: btnRipple 0.6s ease-out;
  pointer-events: none;
}
@keyframes btnRipple {
  to { transform: scale(4); opacity: 0; }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #08090e;
  border: 1px solid var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 0 0 0 rgba(232,200,74,0);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #fce890 100%);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232,200,74,0.3), 0 0 40px rgba(232,200,74,0.1);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232,200,74,0.1);
}
.btn-outline:active { transform: translateY(0); }

.btn-discord {
  background: rgba(88,101,242,0.1);
  border: 1px solid rgba(88,101,242,0.35);
  color: #8b9eff;
}
.btn-discord:hover {
  background: rgba(88,101,242,0.2);
  border-color: rgba(88,101,242,0.7);
  color: #bbc4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(88,101,242,0.2);
}
.btn-discord:active { transform: translateY(0); }

.btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-sm { padding: 6px 14px; font-size: 0.62rem; }
.btn-lg { padding: 14px 32px; font-size: 0.76rem; letter-spacing: 0.18em; border-radius: var(--radius); }

/* Focus visible */
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* === MOBILE HAMBURGER === */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-hamburger:hover { background: rgba(232,200,74,0.06); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 14, 0.98);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--heading);
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.2s, letter-spacing 0.3s;
  padding: 4px 0;
  opacity: 0;
  transform: translateX(30px);
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.open a:nth-child(1) { transition: all 0.4s ease 0.05s, color 0.2s, letter-spacing 0.3s; }
.mobile-nav.open a:nth-child(2) { transition: all 0.4s ease 0.1s, color 0.2s, letter-spacing 0.3s; }
.mobile-nav.open a:nth-child(3) { transition: all 0.4s ease 0.15s, color 0.2s, letter-spacing 0.3s; }
.mobile-nav.open a:nth-child(4) { transition: all 0.4s ease 0.2s, color 0.2s, letter-spacing 0.3s; }
.mobile-nav.open a:nth-child(5) { transition: all 0.4s ease 0.25s, color 0.2s, letter-spacing 0.3s; }
.mobile-nav.open a:nth-child(6) { transition: all 0.4s ease 0.3s, color 0.2s, letter-spacing 0.3s; }
.mobile-nav.open a:nth-child(7) { transition: all 0.4s ease 0.35s, color 0.2s, letter-spacing 0.3s; }
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--gold);
  letter-spacing: 0.16em;
}
.mobile-nav .mobile-nav-discord {
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
}
.mobile-nav.open .mobile-nav-discord {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease 0.4s;
}
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: var(--border-med);
  margin: 12px 0;
  opacity: 0;
}
.mobile-nav.open .mobile-nav-divider {
  opacity: 1;
  transition: opacity 0.4s ease 0.35s;
}

/* === CANVAS PARTICLES === */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 80px) 5% 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(232,200,74,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(88,101,242,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(255,75,75,0.03) 0%, transparent 60%),
    linear-gradient(160deg, #070810 0%, #08090e 50%, #070810 100%);
}
.hero-scanlines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(24,27,44,0.4) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(24,27,44,0.4) 60px);
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.5) 75%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.5) 75%, transparent);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 960px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(232,200,74,0.06) 0%, rgba(232,200,74,0.03) 100%);
  border: 1px solid rgba(232,200,74,0.2);
  padding: 7px 18px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease-out-expo) both;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseGold 2.5s infinite;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--heading);
  font-size: clamp(4.5rem, 12vw, 10rem);
  letter-spacing: 0.05em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 1s var(--ease-out-expo) 0.1s both;
}
.hero-title .highlight {
  color: var(--gold);
  display: block;
  filter: drop-shadow(0 0 40px rgba(232,200,74,0.25));
}
.hero-subtitle {
  font-family: var(--mono);
  font-size: clamp(0.65rem, 1.8vw, 0.85rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeInUp 1s var(--ease-out-expo) 0.2s both;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.75;
  animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}
.hero-actions .btn { padding: 13px 32px; font-size: 0.72rem; border-radius: var(--radius); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
  animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll span {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 300px;
  background: rgba(232,200,74,0.05);
  top: 20%; right: 5%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(88,101,242,0.04);
  bottom: 20%; left: 0%;
  animation-delay: 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.05); }
}

/* === SECTION LAYOUT === */
.section { padding: 100px 5%; position: relative; }
.section-alt { background: var(--bg-secondary); }
.container { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex-shrink: 0;
}
.section-title {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.98;
  margin-bottom: 16px;
}
.section-title .accent { color: var(--gold); }
.section-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 60px;
}
.section-header-centered { text-align: center; }
.section-header-centered .section-label { justify-content: center; }
.section-header-centered .section-label::before { display: none; }
.section-header-centered .section-desc { margin: 0 auto 60px; }

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,200,74,0.02), transparent);
  animation: statsShimmer 4s ease infinite;
}
@keyframes statsShimmer {
  to { left: 150%; }
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left var(--transition-lg), right var(--transition-lg);
}
.stat-item:hover::before { left: 20%; right: 20%; }
.stat-item:hover { background: rgba(232,200,74,0.02); }
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--heading);
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(232,200,74,0.3));
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,200,74,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232,200,74,0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(232,200,74,0.06);
  border: 1px solid rgba(232,200,74,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.feature-card:hover .feature-icon {
  background: rgba(232,200,74,0.1);
  border-color: rgba(232,200,74,0.3);
  box-shadow: 0 0 24px rgba(232,200,74,0.15);
  transform: scale(1.05);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-family: var(--heading);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
  transition: color var(--transition);
}
.feature-card:hover h3 { color: #fff; }
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* === DIVIDER === */
.divider {
  display: flex; align-items: center; gap: 20px; margin: 60px 0;
}
.divider-line { flex: 1; height: 1px; background: var(--border-med); }
.divider-icon { color: var(--gold); opacity: 0.35; }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.about-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,200,74,0.1) 0%, transparent 60%),
    linear-gradient(135deg, #0d1020 0%, #07080e 100%);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-visual-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(30,34,53,0.3) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(30,34,53,0.3) 40px);
}
.about-visual-text {
  font-family: var(--heading);
  font-size: 9rem;
  letter-spacing: 0.1em;
  color: rgba(232,200,74,0.05);
  user-select: none;
  position: relative;
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(8,9,14,0.92);
  border: 1px solid var(--border-hover);
  padding: 14px 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  z-index: 2;
}
.about-badge-num {
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(232,200,74,0.4));
}
.about-badge-text {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-text .values-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.value-item:hover {
  background: rgba(232,200,74,0.04);
  border-color: rgba(232,200,74,0.1);
  color: var(--white);
}
.value-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232,200,74,0.5);
}

/* === TEAM CARDS === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(232,200,74,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover {
  border-color: rgba(232,200,74,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.team-card:hover::before { opacity: 1; }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 2px solid var(--border-hover);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary);
  font-family: var(--heading);
  font-size: 2.2rem;
  color: var(--gold);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.team-card:hover .team-avatar {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(232,200,74,0.25);
}
.team-role {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.team-name {
  font-family: var(--heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.team-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* === SOCIAL CTA === */
.social-cta {
  background: var(--bg-secondary);
  text-align: center;
  padding: 100px 5%;
  border-top: 1px solid var(--border-med);
  position: relative;
  overflow: hidden;
}
.social-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,200,74,0.25), transparent);
}
.social-cta-title {
  font-family: var(--heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.social-cta-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 52px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(232,200,74,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.social-card:hover {
  border-color: rgba(232,200,74,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.social-card:hover::before { opacity: 1; }
.social-card svg { width: 22px; height: 22px; transition: transform var(--transition); }
.social-card:hover svg { transform: scale(1.15); }
.social-card span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.social-card:hover span { color: var(--text); }

/* === PAGE HERO (pages intérieures) === */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 5% 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-med);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 140%, rgba(232,200,74,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #05060c 0%, var(--bg-primary) 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(24,27,44,0.35) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(24,27,44,0.35) 60px);
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 40%);
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 40%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeInDown 0.7s var(--ease-out-expo) both;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.page-hero-title {
  font-family: var(--heading);
  font-size: clamp(3rem, 6.5vw, 6rem);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.05s both;
}
.page-hero-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s both;
}

/* === IFRAME SECTION === */
.iframe-section {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  overflow: hidden;
  margin-top: 48px;
  border-radius: var(--radius-lg);
}
.iframe-section iframe { width: 100%; min-height: 80vh; border: none; display: block; }

/* === BOUTIQUE — COMING SOON === */
.boutique-coming { text-align: center; padding: 80px 40px; }
.boutique-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: rgba(232,200,74,0.06);
  border: 1px solid rgba(232,200,74,0.18);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.boutique-icon:hover {
  background: rgba(232,200,74,0.1);
  box-shadow: 0 0 32px rgba(232,200,74,0.2);
}
.boutique-icon svg { width: 32px; height: 32px; }
.boutique-coming h2 {
  font-family: var(--heading);
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.boutique-coming p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

/* === COMING SOON CARD (boutique) === */
.coming-soon-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.coming-soon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.coming-soon-card:hover {
  border-color: rgba(232,200,74,0.15);
  box-shadow: var(--shadow-gold);
}
.coming-soon-icon {
  width: 80px; height: 80px;
  background: rgba(232,200,74,0.06);
  border: 1px solid rgba(232,200,74,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
  animation: pulseGoldBig 3s infinite;
}
.coming-soon-icon svg { width: 36px; height: 36px; }
@keyframes pulseGoldBig {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,200,74,0); }
  50% { box-shadow: 0 0 0 12px rgba(232,200,74,0.05); }
}
.coming-soon-badge {
  display: inline-block;
  background: rgba(232,200,74,0.08);
  border: 1px solid rgba(232,200,74,0.25);
  border-radius: 100px;
  padding: 5px 18px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.coming-soon-title {
  font-family: var(--heading);
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}
.coming-soon-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.preview-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 36px;
}
.preview-item {
  background: rgba(232,200,74,0.04);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  transition: all var(--transition);
}
.preview-item:hover {
  background: rgba(232,200,74,0.08);
  border-color: rgba(232,200,74,0.2);
  transform: translateY(-2px);
}
.preview-item-icon { font-size: 1.5rem; margin-bottom: 6px; }
.preview-item-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 0 90px;
}
.legal-content h2 {
  font-family: var(--heading);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-med);
}
.legal-content h3 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 12px;
}
.legal-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232,200,74,0.3);
  transition: all var(--transition);
}
.legal-content a:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}
.legal-update {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 44px;
  padding: 12px 18px;
  background: var(--bg-card);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-toc h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.legal-toc ol { list-style: decimal; padding-left: 20px; }
.legal-toc ol li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 2;
}
.legal-toc ol li a { text-decoration: none; transition: color var(--transition); }
.legal-toc ol li a:hover { color: var(--gold); }

/* === FOOTER === */
footer {
  background: #060710;
  border-top: 1px solid var(--border-med);
  padding: 64px 5% 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,200,74,0.15), transparent);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: var(--heading);
  font-size: 1.8rem;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--text-muted); }
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border-med);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,200,74,0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232,200,74,0.1);
}
.footer-social a svg { width: 14px; height: 14px; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.85;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all var(--transition);
  font-family: var(--body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
  flex-shrink: 0;
}
.footer-col ul li a:hover {
  color: var(--text);
  transform: translateX(4px);
}
.footer-col ul li a:hover::before { width: 10px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
  letter-spacing: 0.5px;
  opacity: 0.6;
}
.footer-copy a { color: var(--gold); opacity: 1; }
.footer-copy a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color var(--transition);
  opacity: 0.6;
}
.footer-legal a:hover { color: var(--gold); opacity: 1; }

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,9,14,0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-top: 1px solid var(--border-med);
  padding: 20px 5%;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
#cookie-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,200,74,0.3), transparent);
}
#cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 240px;
  font-family: var(--body);
  line-height: 1.6;
}
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* === TOAST NOTIFICATIONS === */
#toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 8000;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(12,14,23,0.95);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow);
  animation: toastIn 0.4s var(--ease-out-expo) both;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.hiding {
  opacity: 0;
  transform: translateX(16px);
}
.toast-success { border-left: 2px solid #4bff8a; }
.toast-error   { border-left: 2px solid var(--red); }
.toast-info    { border-left: 2px solid var(--gold); }
.toast-icon { font-size: 1rem; flex-shrink: 0; }
.toast-msg {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text);
  flex: 1;
}
.toast-close {
  font-size: 0.7rem;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition);
}
.toast-close:hover { color: var(--white); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Reveal from left/right */
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* === KEYFRAMES === */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,200,74,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(232,200,74,0); }
}

/* === REGLEMENT === */
.reglement-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.reglement-rule {
  background: var(--bg-card);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.reglement-rule:hover {
  border-color: rgba(232,200,74,0.15);
  transform: translateX(4px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  /* Disable custom cursor on touch devices */
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 58px; }
  .section { padding: 72px 5%; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .coming-soon-card { padding: 52px 28px; }
  .preview-items { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 32px; }
  #toast-container { bottom: 16px; right: 16px; left: 16px; }
  .toast { min-width: auto; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.8rem; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .nav-logo-sub { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* === UTILITIES === */
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
.text-center { text-align: center; }

/* === ACCESSIBILITY HELPERS === */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
[aria-busy="true"] { cursor: wait; }
[aria-disabled="true"] { cursor: not-allowed; opacity: 0.5; }

/* === PRINT === */
@media print {
  #navbar, footer, #cookie-banner, #loading-screen, .cursor-dot, .cursor-ring { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; }
}

/* ════════════════════════════════════════════════════════
   ENHANCEMENT v3.0 — Premium Animations & Polish
════════════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  z-index: 10001;
  pointer-events: none;
  transition: width 0.08s linear;
  box-shadow:
    0 0 8px  rgba(232,200,74,0.8),
    0 0 20px rgba(232,200,74,0.4),
    0 0 40px rgba(232,200,74,0.15);
  animation: progressGlow 3s ease infinite;
}
@keyframes progressGlow {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.3); }
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,9,14,0.92);
  border: 1px solid rgba(232,200,74,0.28);
  border-radius: var(--radius);
  color: var(--gold);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(18px) scale(0.88);
  transition: opacity 0.35s, transform 0.5s var(--spring), border-color 0.22s, box-shadow 0.22s, background 0.22s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0;
  will-change: transform, opacity;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: rgba(232,200,74,0.1);
  border-color: rgba(232,200,74,0.65);
  transform: translateY(-5px) scale(1.08);
  box-shadow:
    0 0 20px rgba(232,200,74,0.25),
    0 10px 32px rgba(0,0,0,0.55);
}
.back-to-top:active { transform: translateY(-2px) scale(0.97); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── Shimmer Gold Text ── */
.hero-title .highlight,
.section-title .accent {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold)       20%,
    var(--gold-light) 38%,
    #ffe87a           50%,
    var(--gold-light) 62%,
    var(--gold)       80%,
    var(--gold-dark)  100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: goldShimmer 5s linear infinite;
  filter: none;
}
@keyframes goldShimmer {
  from { background-position:   0% center; }
  to   { background-position: 220% center; }
}
.hero-title .highlight { display: block; }

/* ── Grain / Noise Texture ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9002;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Mouse Spotlight on Feature Cards ── */
.feature-card { --mouse-x: 50%; --mouse-y: 0%; }
.feature-card::after {
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(232,200,74,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 0%, rgba(232,200,74,0.04) 0%, transparent 70%);
  transition: opacity var(--transition);
}

/* ── 3D Perspective on Features Grid ── */
.features-grid { perspective: 1400px; }
.feature-card, .team-card { will-change: transform; }

/* ── Stat Sparkle ── */
.stat-value.sparked {
  animation: statPop 0.55s var(--spring) both;
}
@keyframes statPop {
  0%   { transform: scale(0.84); }
  55%  { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.stat-item:hover .stat-value {
  filter: drop-shadow(0 0 30px rgba(232,200,74,0.7));
  transition: filter 0.3s;
}

/* ── Enhanced Hero Orbs ── */
.hero-orb { border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero-orb-1 {
  background: radial-gradient(ellipse at center, rgba(232,200,74,0.09) 0%, rgba(232,200,74,0.02) 50%, transparent 70%);
  animation: orb1 10s ease-in-out infinite;
}
.hero-orb-2 {
  background: radial-gradient(ellipse at center, rgba(88,101,242,0.08) 0%, rgba(88,101,242,0.02) 50%, transparent 70%);
  animation: orb2 13s ease-in-out infinite;
}
@keyframes orb1 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.75; }
  33%  { transform: translate(-28px,-25px) scale(1.08); opacity: 1; }
  66%  { transform: translate(22px,-12px) scale(0.93); opacity: 0.55; }
}
@keyframes orb2 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.6; }
  40%  { transform: translate(28px,-22px) scale(1.06); opacity: 0.9; }
  70%  { transform: translate(-14px,20px) scale(0.96); opacity: 0.45; }
}

/* ── Loading BC Glow Pulse ── */
.loading-bc {
  animation: bcGlow 2.2s ease-in-out infinite;
}
@keyframes bcGlow {
  0%, 100% { filter: drop-shadow(0 0 8px  rgba(232,200,74,0.35)); opacity: 1; }
  50%       { filter: drop-shadow(0 0 24px rgba(232,200,74,0.9)); opacity: 0.78; }
}

/* ── Button Primary Shine Sweep ── */
.btn-primary { overflow: hidden; }
.btn-primary::before {
  content: '';
  position: absolute;
  top: -60%; left: -85%;
  width: 55%; height: 220%;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,0.18) 50%,
    transparent 75%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 2;
}
.btn-primary:hover::before {
  animation: btnShine 0.7s ease forwards;
}
@keyframes btnShine {
  from { left: -85%; }
  to   { left: 165%; }
}

/* ── Hero Badge Sweep ── */
.hero-badge { position: relative; overflow: hidden; }
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,200,74,0.18), transparent);
  pointer-events: none;
  animation: badgeSweep 5s ease-in-out 1.8s infinite;
}
@keyframes badgeSweep {
  0%, 38%, 100% { left: -100%; opacity: 1; }
  28%           { left: 160%; opacity: 1; }
}

/* ── Scale + Translate Reveal ── */
.reveal      { transform: translateY(28px) scale(0.97); }
.reveal.visible { transform: translateY(0) scale(1); }
.reveal-left { transform: translateX(-28px) scale(0.97); }
.reveal-left.visible { transform: translateX(0) scale(1); }
.reveal-right { transform: translateX(28px) scale(0.97); }
.reveal-right.visible { transform: translateX(0) scale(1); }

/* ── About Visual Ambient Animation ── */
.about-visual-bg {
  animation: aboutAmbient 9s ease-in-out infinite alternate;
}
@keyframes aboutAmbient {
  from {
    background:
      radial-gradient(ellipse at 22% 50%, rgba(232,200,74,0.08) 0%, transparent 55%),
      linear-gradient(135deg, #0e1122 0%, #07080e 100%);
  }
  to {
    background:
      radial-gradient(ellipse at 78% 50%, rgba(232,200,74,0.13) 0%, transparent 55%),
      linear-gradient(315deg, #0e1122 0%, #07080e 100%);
  }
}

/* ── Hero Grid Pulse ── */
.hero-grid {
  animation: heroGridPulse 11s ease-in-out infinite;
}
@keyframes heroGridPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ── Social CTA Ambient Glow ── */
.social-cta { overflow: hidden; }
.social-cta::after {
  content: '';
  position: absolute;
  width: 700px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(232,200,74,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaAmbient 7s ease-in-out infinite;
  z-index: 0;
}
.social-cta > * { position: relative; z-index: 1; }
@keyframes ctaAmbient {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.9; }
  50%       { transform: translate(-50%,-50%) scale(1.45); opacity: 0.3; }
}

/* ── Nav Logo Hover Glow ── */
.nav-logo:hover .nav-logo-text {
  filter: drop-shadow(0 0 12px rgba(232,200,74,0.45));
}

/* ── Enhanced Stats Shimmer ── */
.stats-bar::before {
  animation: statsShimmer 3s ease infinite;
}

/* ── Feature Card Enhanced Hover ── */
.feature-card:hover {
  border-color: rgba(232,200,74,0.2);
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(232,200,74,0.08),
    0 0 40px rgba(232,200,74,0.1),
    0 20px 60px rgba(0,0,0,0.5);
}
.feature-card:hover h3 {
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* ── Value Item Enhanced ── */
.value-item:hover .value-dot {
  animation: dotPulse 1s ease infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,200,74,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(232,200,74,0); transform: scale(1.2); }
}

/* ── Enhanced Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: rgba(8,9,14,0.8); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(232,200,74,0.3);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ── Enhanced Toast ── */
.toast-success { border-left: 2px solid #4bff8a; box-shadow: 0 0 20px rgba(75,255,138,0.1), var(--shadow); }
.toast-info    { border-left: 2px solid var(--gold); box-shadow: 0 0 20px rgba(232,200,74,0.1), var(--shadow); }
.toast-error   { border-left: 2px solid var(--red); box-shadow: 0 0 20px rgba(255,75,75,0.1), var(--shadow); }

/* ── Prefers Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.12ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-progress { transition: none !important; }
  .hero-title .highlight,
  .section-title .accent { animation: none !important; background-position: 0 !important; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ── Typing cursor ── */
.hero-subtitle.typing {
  border-right: 2px solid var(--gold);
  padding-right: 3px;
  white-space: nowrap;
  overflow: hidden;
}
