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

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

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.22) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0, 255, 229, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 50% 0%, rgba(255, 0, 168, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(0, 140, 255, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #08080a 0%, #0f0f12 50%, #12121a 100%);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  padding-bottom: 80px;
  position: relative;
}

/* ----------------------- VARIABLES THEME ----------------------- */
:root {
  --primary-cyan: #00ffe5;
  --primary-blue: #008cff;
  --primary-pink: #ff00a8;
  --primary-purple: #8b5cf6;
  --primary-gold: #ffd700;

  --dark-bg: #0a0a0a;
  --card-bg: rgba(15, 15, 15, 0.99);
  --glass-border: rgba(255, 255, 255, 0.12);

  --text-primary: #ffffff;
  --text-secondary: #b4b4bb;

  --glow: 0 0 80px rgba(0, 255, 229, 0.4);
  --glow-purple: 0 0 80px rgba(139, 92, 246, 0.4);
  --glow-pink: 0 0 80px rgba(255, 0, 168, 0.4);
}

/* ---------------------- MESH GRADIENT BACKGROUND ---------------------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(3px 3px at 18% 25%, rgba(0,255,229,.35), transparent),
    radial-gradient(2px 2px at 38% 65%, rgba(139,92,246,.3), transparent),
    radial-gradient(2px 2px at 85% 35%, rgba(255,0,168,.35), transparent),
    radial-gradient(1.5px 1.5px at 62% 15%, rgba(0,140,255,.25), transparent),
    radial-gradient(2.5px 2.5px at 12% 75%, rgba(255,215,0,.2), transparent),
    radial-gradient(1px 1px at 92% 85%, rgba(0,255,229,.28), transparent);
  background-size: 220px 180px, 180px 160px, 200px 170px, 190px 150px, 210px 175px, 195px 165px;
  animation: particles 35s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -2;
  opacity: 0.9;
  filter: blur(0.5px);
}

body::after {
  content: "";
  position: fixed;
  inset: -80%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(0,255,229,.08) 60deg,
    rgba(139,92,246,.06) 120deg,
    transparent 180deg,
    rgba(255,0,168,.07) 240deg,
    rgba(0,140,255,.05) 300deg,
    transparent 360deg
  );
  animation: cosmic-spin 100s linear infinite;
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
  mix-blend-mode: screen;
}

@keyframes particles {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1); 
    opacity: .75; 
  }
  33% { 
    transform: translateY(-35px) rotate(120deg) scale(1.05); 
    opacity: 1; 
  }
  66% { 
    transform: translateY(-20px) rotate(240deg) scale(0.98); 
    opacity: .85; 
  }
}

@keyframes cosmic-spin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1); }
}

/* ---------------------- SECTION PRINCIPALE ---------------------- */
.download-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 130px 25px;
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(165deg, 
      rgba(0,255,229,0.12) 0%, 
      rgba(139,92,246,0.1) 25%, 
      rgba(255,0,168,0.12) 50%,
      rgba(0,140,255,0.09) 75%,
      rgba(255,215,0,0.08) 100%
    ),
    radial-gradient(ellipse at 30% 20%, rgba(0,255,229,0.22), transparent 70%),
    radial-gradient(ellipse at 80% 75%, rgba(139,92,246,0.18), transparent 70%),
    radial-gradient(ellipse at 50% 50%, rgba(255,0,168,0.1), transparent 80%),
    linear-gradient(135deg, #08080a 0%, #0e0e10 100%);
  backdrop-filter: blur(15px) saturate(220%);
  border-radius: 0 0 56px 56px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.05);
}

.container {
  max-width: 960px;
  background: var(--card-bg);
  padding: 100px 80px;
  border-radius: 48px;
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(50px) saturate(220%) brightness(1.05);
  position: relative;
  overflow: hidden;
  transition: transform .7s cubic-bezier(.19,1,.22,1), box-shadow .7s, border-color .5s;
  box-shadow:
    0 35px 100px -30px rgba(0,0,0,.95),
    0 0 120px rgba(0,255,229,.22),
    0 0 80px rgba(139,92,246,.15),
    inset 0 2px 0 rgba(255,255,255,.18),
    inset 0 -2px 0 rgba(255,255,255,.08);
}

/* Animated border glow */
.container::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, 
    rgba(0,255,229,0.4) 0%, 
    rgba(139,92,246,0.3) 25%,
    rgba(255,0,168,0.35) 50%,
    rgba(0,140,255,0.25) 75%,
    rgba(0,255,229,0.4) 100%
  );
  background-size: 200% 200%;
  border-radius: 48px;
  z-index: -1;
  opacity: 0;
  transition: opacity .6s ease;
  filter: blur(25px);
  animation: gradient-shift 8s ease-in-out infinite alternate;
}

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

/* Inner glow */
.container::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 40px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0,255,229,0.08),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
}

.container:hover::before {
  opacity: 0.6;
}

.container:hover::after {
  opacity: 1;
}

.container:hover {
  transform: translateY(-12px) scale(1.015);
  border-color: rgba(0,255,229,.25);
  box-shadow:
    0 50px 130px -35px rgba(0,0,0,1),
    0 0 150px rgba(0,255,229,.35),
    0 0 100px rgba(139,92,246,.25),
    0 0 60px rgba(255,0,168,.2),
    inset 0 2px 0 rgba(255,255,255,.25),
    inset 0 -2px 0 rgba(255,255,255,.12);
}

/* ---------------------- TITRE PREMIUM ---------------------- */
h1 {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  animation: title-glow 8s ease-in-out infinite alternate;
  text-shadow: 
    0 0 80px rgba(0,255,229,.8),
    0 0 120px rgba(0,255,229,.6),
    0 0 60px rgba(139,92,246,.7),
    0 0 40px rgba(255,0,168,.6),
    0 2px 4px rgba(0,0,0,.4),
    0 4px 12px rgba(0,0,0,.6),
    0 8px 24px rgba(0,0,0,.8);
  filter: 
    drop-shadow(0 0 30px rgba(0,255,229,.5))
    drop-shadow(0 0 50px rgba(139,92,246,.4))
    drop-shadow(0 0 25px rgba(255,0,168,.3));
}

@keyframes title-glow {
  0% { 
    text-shadow: 
      0 0 80px rgba(0,255,229,.9),
      0 0 120px rgba(0,255,229,.7),
      0 0 60px rgba(139,92,246,.6),
      0 0 40px rgba(255,0,168,.5),
      0 2px 4px rgba(0,0,0,.4),
      0 4px 12px rgba(0,0,0,.6),
      0 8px 24px rgba(0,0,0,.8);
    filter: 
      drop-shadow(0 0 35px rgba(0,255,229,.6))
      drop-shadow(0 0 55px rgba(139,92,246,.4))
      drop-shadow(0 0 30px rgba(255,0,168,.3));
  }
  33% { 
    text-shadow: 
      0 0 90px rgba(139,92,246,.9),
      0 0 130px rgba(139,92,246,.7),
      0 0 65px rgba(255,0,168,.7),
      0 0 45px rgba(0,255,229,.5),
      0 2px 4px rgba(0,0,0,.4),
      0 4px 12px rgba(0,0,0,.6),
      0 8px 24px rgba(0,0,0,.8);
    filter: 
      drop-shadow(0 0 40px rgba(139,92,246,.6))
      drop-shadow(0 0 60px rgba(255,0,168,.5))
      drop-shadow(0 0 30px rgba(0,255,229,.4));
  }
  66% { 
    text-shadow: 
      0 0 85px rgba(255,0,168,.9),
      0 0 125px rgba(255,0,168,.7),
      0 0 62px rgba(0,255,229,.7),
      0 0 42px rgba(139,92,246,.6),
      0 2px 4px rgba(0,0,0,.4),
      0 4px 12px rgba(0,0,0,.6),
      0 8px 24px rgba(0,0,0,.8);
    filter: 
      drop-shadow(0 0 38px rgba(255,0,168,.6))
      drop-shadow(0 0 58px rgba(0,255,229,.5))
      drop-shadow(0 0 28px rgba(139,92,246,.4));
  }
  100% { 
    text-shadow: 
      0 0 80px rgba(0,255,229,.9),
      0 0 120px rgba(0,255,229,.7),
      0 0 60px rgba(139,92,246,.6),
      0 0 40px rgba(255,0,168,.5),
      0 2px 4px rgba(0,0,0,.4),
      0 4px 12px rgba(0,0,0,.6),
      0 8px 24px rgba(0,0,0,.8);
    filter: 
      drop-shadow(0 0 35px rgba(0,255,229,.6))
      drop-shadow(0 0 55px rgba(139,92,246,.4))
      drop-shadow(0 0 30px rgba(255,0,168,.3));
  }
}

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

/* Glow layer for depth */
h1::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(135deg,
    rgba(0,255,229,.5) 0%,
    rgba(0,212,255,.4) 25%,
    rgba(139,92,246,.5) 50%,
    rgba(255,0,168,.4) 75%,
    rgba(0,255,229,.5) 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(25px) brightness(2);
  opacity: 0.7;
  z-index: -1;
  animation: gradient-flow 10s ease infinite;
}

/* Sharp highlight layer */
h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(180deg,
    rgba(255,255,255,.8) 0%,
    rgba(255,255,255,.3) 50%,
    transparent 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ---------------------- TAGLINE ---------------------- */
.tagline {
  font-size: clamp(1.22rem, 2.5vw, 1.6rem);
  max-width: 720px;
  margin: 35px auto 60px;
  color: var(--text-secondary);
  line-height: 2;
  opacity: .97;
  font-weight: 450;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  letter-spacing: 0.01em;
}

/* ---------------------- IMAGE INTERACTIVE ---------------------- */
.software-image-container {
  perspective: 2000px;
  margin-bottom: 55px;
  position: relative;
}

.software-image-container::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    circle,
    rgba(0,255,229,.15),
    rgba(139,92,246,.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
  filter: blur(40px);
}

.software-image-container:hover::before {
  opacity: 1;
}

.software-image-container img {
  width: min(420px, 90vw);
  border-radius: 28px;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: 
    transform .9s cubic-bezier(.19,1,.22,1), 
    filter .9s, 
    box-shadow .7s,
    border-color .5s;
  filter: 
    drop-shadow(0 35px 70px rgba(0,0,0,.5)) 
    brightness(1.08) 
    contrast(1.05);
  cursor: pointer;
  background: linear-gradient(145deg, #252525, #141414);
  padding: 7px;
  box-shadow: 
    0 25px 60px rgba(0,0,0,.6),
    0 0 40px rgba(0,255,229,.1),
    inset 0 2px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.4);
  position: relative;
}

.software-image-container img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg,
    rgba(0,255,229,.15),
    rgba(139,92,246,.1),
    rgba(255,0,168,.12)
  );
  opacity: 0;
  transition: opacity .6s ease;
}

.software-image-container img:hover {
  transform: translateY(-18px) rotateX(5deg) rotateY(-2deg) scale(1.05);
  border-color: rgba(0,255,229,.3);
  filter: 
    drop-shadow(0 50px 100px rgba(0,255,229,.35)) 
    drop-shadow(0 30px 60px rgba(139,92,246,.25))
    brightness(1.15) 
    contrast(1.08);
  box-shadow: 
    0 40px 90px rgba(0,255,229,.3),
    0 20px 50px rgba(139,92,246,.2),
    inset 0 2px 0 rgba(255,255,255,.2),
    inset 0 -1px 0 rgba(0,0,0,.3);
}

.software-image-container img:active {
  transform: translateY(-12px) scale(1.02);
}

/* ---------------------- CTA BUTTON ---------------------- */
.cta-button {
  display: inline-block;
  padding: 24px 64px;
  font-size: 1.38rem;
  font-weight: 800;
  border-radius: 60px;
  border: 2.5px solid transparent;
  background:
    linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
    linear-gradient(135deg, 
      var(--primary-cyan) 0%, 
      var(--primary-purple) 50%, 
      var(--primary-pink) 100%
    ) border-box;
  background-size: 200% 200%;
  color: var(--text-primary);
  transition: all .5s cubic-bezier(.19,1,.22,1);
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 
    0 18px 50px rgba(0,0,0,.5), 
    0 8px 25px rgba(0,255,229,.2),
    inset 0 2px 0 rgba(255,255,255,.18),
    inset 0 -2px 4px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* Animated gradient border */
.cta-button {
  animation: border-flow 6s linear infinite;
}

@keyframes border-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Shine effect */
.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    transparent 0%,
    rgba(255,255,255,.15) 45%,
    rgba(255,255,255,.25) 50%,
    rgba(255,255,255,.15) 55%,
    transparent 100%
  );
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .8s ease;
}

/* Glow overlay */
.cta-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0,255,229,0.25), 
    rgba(139,92,246,0.2), 
    rgba(255,0,168,0.25)
  );
  opacity: 0;
  transition: opacity .5s ease;
  border-radius: 60px;
}

.cta-button:hover::before {
  transform: translateX(100%) skewX(-15deg);
}

.cta-button:hover::after {
  opacity: 1;
}

.cta-button:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 25px 70px rgba(0,0,0,.6), 
    0 15px 40px rgba(0,255,229,.35),
    0 8px 25px rgba(139,92,246,.25),
    inset 0 2px 0 rgba(255,255,255,.25),
    inset 0 -2px 6px rgba(0,0,0,.4);
}

.cta-button:active {
  transform: translateY(-3px) scale(1.01);
}

/* ---------------------- TEXTE & COUNTER ---------------------- */
.download-note {
  margin-top: 36px;
  color: var(--text-secondary);
  opacity: .92;
  font-size: 1.05rem;
  letter-spacing: .6px;
  font-weight: 450;
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
}

.download-counter {
  margin-top: 55px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 42px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(28,28,32,.98), rgba(14,14,16,.98));
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.28rem;
  backdrop-filter: blur(30px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,.1);
  transition: all .4s cubic-bezier(.19,1,.22,1);
  box-shadow: 
    0 12px 35px rgba(0,0,0,.5),
    0 0 30px rgba(0,255,229,.08),
    inset 0 2px 0 rgba(255,255,255,.12),
    inset 0 -1px 0 rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}

.download-counter::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, 
    rgba(0,255,229,0.15), 
    rgba(139,92,246,0.12),
    rgba(255,0,168,0.1)
  );
  border-radius: 28px;
  opacity: 0;
  transition: opacity .4s ease;
  filter: blur(15px);
  z-index: -1;
}

.download-counter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, 
    rgba(0,255,229,0.12), 
    rgba(139,92,246,0.1)
  );
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: 28px;
}

.download-counter:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0,255,229,.25);
  box-shadow: 
    0 18px 50px rgba(0,0,0,.6),
    0 0 50px rgba(0,255,229,.25),
    0 0 30px rgba(139,92,246,.15),
    inset 0 2px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.25);
}

.download-counter:hover::before {
  opacity: 1;
}

.download-counter:hover::after {
  opacity: 1;
}

.download-counter strong {
  background: linear-gradient(135deg, 
    var(--primary-cyan) 0%, 
    var(--primary-purple) 50%,
    var(--primary-pink) 100%
  );
  background-size: 200% 200%;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 950;
  font-size: 1.65rem;
  filter: drop-shadow(0 0 12px rgba(0,255,229,.4));
  animation: gradient-flow 8s ease infinite;
  letter-spacing: -0.02em;
}

/* ---------------------- MAINTENANCE BANNER ---------------------- */
.maintenance-banner {
  background: linear-gradient(135deg, #ffdd00, #ffaa00, #ff8800);
  background-size: 200% 200%;
  animation: gradient-flow 6s ease infinite;
  color: #000;
  text-align: center;
  padding: 20px;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 
    0 6px 25px rgba(0,0,0,.3),
    inset 0 2px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.2);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
}

.cta-button.disabled {
  background: linear-gradient(135deg, #444, #333) !important;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.45;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  filter: grayscale(1);
}

/* ---------------------- DONATE BUTTON ---------------------- */
.donate-button {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  z-index: 1000;
  box-shadow:
    0 15px 45px rgba(255, 95, 109, 0.45),
    0 8px 25px rgba(255, 195, 113, 0.3),
    inset 0 -2px 10px rgba(255, 255, 255, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
  transition: 
    transform 0.35s cubic-bezier(.19,1,.22,1),
    box-shadow 0.35s ease,
    opacity 0.35s ease;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,.25);
  animation: gradient-flow 8s ease infinite, float 4s ease-in-out infinite;
}

/* Outer glow */
.donate-button::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  background-size: 200% 200%;
  border-radius: 999px;
  z-index: -1;
  opacity: 0;
  filter: blur(18px);
  transition: opacity .4s ease;
  animation: gradient-flow 8s ease infinite;
}

/* Inner shine */
.donate-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, 
    rgba(255,255,255,.3) 0%, 
    transparent 100%
  );
  border-radius: 999px 999px 0 0;
  pointer-events: none;
}

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

.donate-button:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow:
    0 22px 60px rgba(255, 95, 109, 0.55),
    0 12px 35px rgba(255, 195, 113, 0.4),
    inset 0 -2px 12px rgba(255, 255, 255, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.donate-button:hover::before {
  opacity: 0.8;
}

.donate-button:active {
  transform: scale(0.95);
}

/* ---------------------- RESPONSIVE ---------------------- */
@media (max-width: 780px) {
  .container {
    padding: 70px 45px;
    border-radius: 36px;
  }
  .cta-button {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .donate-button {
    bottom: 20px;
    left: 20px;
    padding: 15px 22px;
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 50px 30px;
    border-radius: 28px;
  }
  h1 { font-size: 2.6rem; }
  .cta-button { padding: 20px 34px; font-size: 1.15rem; }
}

/* ---------------------- ACCESSIBILITÉ ---------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .donate-button {
    animation: none;
  }
  
  h1 {
    animation: none;
  }
  
  .cta-button {
    animation: none;
  }
}

/* ---------------------- FOCUS STATES ---------------------- */
.cta-button:focus-visible,
.donate-button:focus-visible {
  outline: 3px solid var(--primary-cyan);
  outline-offset: 5px;
  box-shadow: 
    0 0 0 6px rgba(0,255,229,.2),
    0 25px 70px rgba(0,0,0,.6);
}

/* ---------------------- SMOOTH SCROLLING ---------------------- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* ---------------------- SELECTION STYLING ---------------------- */
::selection {
  background: rgba(0,255,229,.3);
  color: #fff;
  text-shadow: 0 0 8px rgba(0,255,229,.6);
}

::-moz-selection {
  background: rgba(0,255,229,.3);
  color: #fff;
  text-shadow: 0 0 8px rgba(0,255,229,.6);
}

/* ---------------------- SCROLLBAR STYLING ---------------------- */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(10,10,10,.8);
  border-left: 1px solid rgba(255,255,255,.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, 
    rgba(0,255,229,.5), 
    rgba(139,92,246,.5)
  );
  border-radius: 10px;
  border: 2px solid rgba(10,10,10,.8);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, 
    rgba(0,255,229,.7), 
    rgba(139,92,246,.7)
  );
}