/* ═══════════════════════════════════════
   SquadBot — Feuille de style partagée
   Utilisée par : index.html, conditions.html, confidentialite.html
   ═══════════════════════════════════════ */

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

/* ─── VARIABLES ─── */
:root {
  --purple:    #9147ff;
  --twitch:    #9147ff;
  --discord:   #5865f2;
  --neon:      #bf5fff;
  --neon-blue: #00d4ff;
  --bg:        #0a0a0f;
  --bg2:       #0f0f1a;
  --bg3:       #141428;
  --text:      #e8e8f0;
  --muted:     #7a7a9a;
  --border:    rgba(145, 71, 255, 0.2);
}

/* ─── BASE ─── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
}
.nav-logo span { color: var(--neon); }

.nav-cta {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(145,71,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cta:hover {
  background: var(--neon);
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(191,95,255,0.6);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--purple), var(--neon));
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
  box-shadow: 0 4px 30px rgba(145,71,255,0.5);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(145,71,255,0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--neon);
  color: var(--neon);
  transform: translateY(-2px);
}

/* ─── ORBS ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: drift 8s ease-in-out infinite alternate;
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(145,71,255,0.25) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(88,101,242,0.2) 0%, transparent 70%);
  bottom: -50px; right: -80px;
  animation-delay: -4s;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  top: 40%; left: 60%;
  animation-delay: -2s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

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

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

/* ─── SECTIONS SHARED ─── */
section {
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(145,71,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145,71,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(145,71,255,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 2s ease-in-out infinite;
}

h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ─── NOTIFICATION MOCKUP ─── */
.hero-mockup {
  margin-top: 4rem;
  animation: fadeUp 0.8s 0.4s ease both;
  position: relative;
}

.notification-card {
  background: #1e1f22;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 420px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(145,71,255,0.1);
  position: relative;
  animation: cardFloat 4s ease-in-out infinite;
}

.notif-avatar-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a1080, #9147ff);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  overflow: hidden;
  position: relative;
}

.notif-content { flex: 1; min-width: 0; }

.notif-bot { font-size: 0.7rem; color: var(--muted); margin-bottom: 0.2rem; }
.notif-bot strong { color: var(--purple); }
.notif-bot .tag {
  background: var(--discord);
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 4px;
}

.notif-text { font-size: 0.9rem; line-height: 1.5; }
.notif-text .username { color: var(--neon); font-weight: 600; }

.notif-embed {
  margin-top: 0.6rem;
  border-left: 3px solid #9147ff;
  background: rgba(30,28,40,0.9);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.notif-embed .embed-live-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e91916;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.notif-embed .embed-live-tag::before {
  content: '';
  width: 7px; height: 7px;
  background: #e91916;
  border-radius: 50%;
  box-shadow: 0 0 6px #e91916;
  animation: pulse 1.5s ease-in-out infinite;
}
.notif-embed .embed-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.notif-embed .embed-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
}
.notif-embed .embed-meta span  { color: var(--muted); }
.notif-embed .embed-meta strong { color: var(--text); }
.notif-embed .embed-meta a {
  color: var(--purple);
  text-decoration: none;
  font-size: 0.78rem;
}
.notif-embed .embed-thumbnail {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #1a0a2e;
  margin-bottom: 0.6rem;
  position: relative;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-embed .embed-thumbnail .thumb-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0030 0%, #0d001a 40%, #0a0020 60%, #1a0030 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.notif-embed .embed-thumbnail .thumb-glow {
  position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,230,80,0.5) 0%, transparent 70%);
  top: 30%; left: 35%;
  filter: blur(20px);
}
.notif-embed .embed-thumbnail .thumb-glow2 {
  position: absolute;
  width: 100px; height: 80px;
  background: radial-gradient(circle, rgba(180,0,255,0.4) 0%, transparent 70%);
  top: 10%; left: 10%;
  filter: blur(15px);
}
.notif-embed .embed-thumbnail .thumb-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(0,230,100,0.6);
}
.notif-embed .embed-footer {
  font-size: 0.7rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.notif-embed .embed-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.notif-embed .embed-watch-btn:hover { background: rgba(255,255,255,0.1); }

/* ─── FEATURES ─── */
.features {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 4rem;
}
.features-header .section-desc { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: rgba(145,71,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(145,71,255,0.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  background: rgba(145,71,255,0.15);
  border: 1px solid rgba(145,71,255,0.2);
}
.feature-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.badge-free {
  display: inline-flex;
  align-items: center;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--neon-blue);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 0.75rem;
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 900px;
  margin: 0 auto;
}
.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(to bottom, var(--neon), var(--discord));
  opacity: 0.4;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
}
.step-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon);
  background: var(--bg);
  box-shadow: 0 0 20px rgba(145,71,255,0.3);
  position: relative;
  z-index: 1;
}
.step-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.step-body p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
.step-body .code {
  display: inline-block;
  background: rgba(145,71,255,0.15);
  border: 1px solid rgba(145,71,255,0.25);
  color: var(--neon);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin: 0.4rem 0;
}
.step-body .warning {
  margin-top: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(255,170,0,0.05);
  border: 1px solid rgba(255,170,0,0.2);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 0.82rem;
  color: #ffa500;
  line-height: 1.5;
}

/* ─── FAQ ─── */
details {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
details[open] { border-color: rgba(145,71,255,0.5); }

details summary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary .faq-icon {
  color: var(--neon);
  font-size: 1.4rem;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.2s;
}
details[open] summary .faq-icon { transform: rotate(45deg); }

.faq-answer {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── CTA ─── */
.cta-section {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .orb1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(145,71,255,0.15) 0%, transparent 65%);
  animation: none;
}
.cta-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.gradient-text {
  background: linear-gradient(135deg, var(--neon), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  gap: 1rem;
}
footer .nav-logo { font-size: 1.2rem; }
footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--neon); }
footer > div:last-child {
  text-align: right;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ─── SUPPORT / DONATION ─── */
.support-section {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.support-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.support-text p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.3rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid transparent;
}

.support-btn--donate {
  background: linear-gradient(135deg, #ff4d8d, #c0392b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,77,141,0.35);
}
.support-btn--donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,77,141,0.55);
}

.support-btn--twitch {
  background: rgba(145,71,255,0.12);
  color: var(--neon);
  border-color: rgba(145,71,255,0.3);
}
.support-btn--twitch:hover {
  background: rgba(145,71,255,0.22);
  border-color: var(--neon);
  transform: translateY(-2px);
}

.support-btn--discord {
  background: rgba(88,101,242,0.12);
  color: #8b9cf0;
  border-color: rgba(88,101,242,0.3);
}
.support-btn--discord:hover {
  background: rgba(88,101,242,0.22);
  border-color: #8b9cf0;
  transform: translateY(-2px);
}

/* Carte profil */
.support-card {
  flex-shrink: 0;
}

.support-card-inner {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  text-align: center;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.support-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--neon), #ff4d8d);
}
.support-card-inner:hover {
  border-color: rgba(145,71,255,0.45);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(145,71,255,0.1);
}

.support-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg3);
  margin: 0 auto 0.75rem;
  border: 3px solid rgba(145,71,255,0.5);
  box-shadow: 0 0 20px rgba(145,71,255,0.3);
  overflow: hidden;
  flex-shrink: 0;
}
.support-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.support-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.support-card-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}

.support-card-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.support-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.support-chip--twitch {
  background: rgba(145,71,255,0.12);
  color: var(--neon);
  border: 1px solid rgba(145,71,255,0.25);
}
.support-chip--twitch:hover {
  background: rgba(145,71,255,0.25);
}
.support-chip--discord {
  background: rgba(88,101,242,0.12);
  color: #8b9cf0;
  border: 1px solid rgba(88,101,242,0.25);
}
.support-chip--discord:hover {
  background: rgba(88,101,242,0.25);
}

.support-donate-cta {
  display: block;
  background: linear-gradient(135deg, #ff4d8d, #c0392b);
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 15px rgba(255,77,141,0.3);
}
.support-donate-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,77,141,0.5);
}

@media (max-width: 768px) {
  .support-section { padding: 4rem 1.5rem; }
  .support-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .support-card { display: flex; justify-content: center; }
}

/* ─── LEGAL PAGES ─── */
.legal-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.legal-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  animation: fadeUp 0.6s ease both;
  letter-spacing: -0.01em;
}
.legal-hero .legal-date {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  position: relative;
  z-index: 1;
}
.legal-body h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neon);
  margin: 1.5rem 0 0.4rem;
}
.legal-body p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.legal-body ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.legal-body ul li { margin-bottom: 0.3rem; }
.legal-body a {
  color: var(--purple);
  text-decoration: none;
}
.legal-body a:hover {
  color: var(--neon);
  text-decoration: underline;
}
.legal-body strong { color: var(--text); }

.legal-body .info-box {
  background: rgba(145,71,255,0.08);
  border: 1px solid rgba(145,71,255,0.2);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1.5rem 0;
  line-height: 1.7;
}

/* ─── ACCESSIBILITY ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--purple);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  z-index: 9999;
  text-decoration: none;
  font-size: 0.875rem;
}
.skip-link:focus { left: 1rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .features { padding: 4rem 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  footer { padding: 1.5rem; grid-template-columns: 1fr; text-align: center; }
  footer > div:last-child { text-align: center; }
  .footer-links { justify-content: center; }
  .steps::before { display: none; }
  .legal-body { padding: 1.5rem 1.5rem 4rem; }
}
