/* ============================================
   ZEKKO - CYBERPUNK VTUBER
   style.css
   ============================================ */

:root {
  --bg: #040810;
  --bg2: #070e18;
  --bg3: #0c1822;
  --card: #0a1520;
  --cyan: #00F5FF;
  --pink: #FF2D78;
  --yellow: #FFE600;
  --purple: #B44FFF;
  --text: #E8F4FF;
  --muted: #A0BFCF;
  --border: rgba(0, 245, 255, 0.12);
  --border-hot: rgba(255, 45, 120, 0.3);
  --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.4);
  --glow-pink: 0 0 20px rgba(255, 45, 120, 0.4);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Curseur masqué uniquement quand JS a chargé le curseur custom */
body.js-cursor,
body.js-cursor *:not(#cursor):not(#cursor-ring) { cursor: none; }

/* ---- Barre de chargement ---- */
#loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink), var(--cyan));
  background-size: 300% 100%;
  animation: loading-shimmer 1.4s linear infinite;
  z-index: 10001;
  transition: opacity 0.5s 0.1s;
}
#loading-bar.done {
  opacity: 0;
  pointer-events: none;
}
@keyframes loading-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -200% 0; }
}

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

/* ---- Bannière hors-ligne ---- */
.offline-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  padding: 0.45rem 1rem;
  background: linear-gradient(90deg,
    rgba(255, 45, 120, 0.12),
    rgba(2, 4, 8, 0.97) 30%,
    rgba(2, 4, 8, 0.97) 70%,
    rgba(255, 45, 120, 0.12)
  );
  border-bottom: 1px solid rgba(255, 45, 120, 0.4);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--pink);
  text-transform: uppercase;
  text-align: center;
  backdrop-filter: blur(12px);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.offline-banner.visible {
  transform: translateY(0);
  pointer-events: auto;
}

/* Décaler la nav quand la bannière est visible */
body.is-offline nav { top: 34px; }

/* ---- Lien d'évitement (skip link) ---- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.8rem 1.5rem;
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

/* ---- Focus visible (navigation clavier) ---- */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(0, 245, 255, 0.18);
}

.btn-primary:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 5px rgba(0, 245, 255, 0.25), var(--glow-cyan);
}

.nav-links a:focus-visible,
.schedule-btn:focus-visible,
.clip-watch-btn:focus-visible,
.vod-watch:focus-visible,
.social-card:focus-visible,
.jeu-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(0, 245, 255, 0.15);
}

/* ---- Curseur custom ---- */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, width 0.2s, height 0.2s, border-color 0.2s;
  opacity: 0.6;
}

/* ---- Scanlines overlay ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 245, 255, 0.006) 2px,
    rgba(0, 245, 255, 0.006) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

/* ---- Grid background ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ---- Countdown bar ---- */
.countdown-bar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 4rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 245, 255, 0.03);
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.countdown-bar.visible { display: flex; }

#countdown-label { color: var(--muted); }

.countdown-time {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.4);
}

.countdown-sep { color: var(--muted); }

.countdown-title {
  color: var(--text);
  font-style: italic;
  text-transform: none;
}

.countdown-game {
  color: var(--pink);
  text-transform: none;
}

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 4, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  animation: scanline 3s linear infinite;
}

@keyframes scanline {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.nav-links a::before {
  content: '//';
  margin-right: 4px;
  color: var(--cyan);
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.nav-links a:hover::before,
.nav-links a.active::before { opacity: 1; }

/* ---- Burger menu ---- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Nav right (Contact + Langue) ---- */
.nav-right {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ---- Lang toggle ---- */
.lang-dropdown {
  position: static;
  transform: none;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  cursor: none;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.lang-toggle:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.lang-flag {
  width: 16px;
  height: 12px;
  border-radius: 1px;
  flex-shrink: 0;
  vertical-align: middle;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flag-fr { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='1' height='2' fill='%23002395'/%3E%3Crect x='1' width='1' height='2' fill='white'/%3E%3Crect x='2' width='1' height='2' fill='%23ED2939'/%3E%3C/svg%3E"); }
.flag-gb { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Crect width='60' height='40' fill='%23012169'/%3E%3Cpath d='M0 0L60 40M60 0L0 40' stroke='white' stroke-width='10'/%3E%3Cpath d='M0 0L60 40M60 0L0 40' stroke='%23C8102E' stroke-width='6'/%3E%3Crect x='24' width='12' height='40' fill='white'/%3E%3Crect y='14' width='60' height='12' fill='white'/%3E%3Crect x='26' width='8' height='40' fill='%23C8102E'/%3E%3Crect y='16' width='60' height='8' fill='%23C8102E'/%3E%3C/svg%3E"); }
.flag-jp { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='white'/%3E%3Ccircle cx='1.5' cy='1' r='0.6' fill='%23BC002D'/%3E%3C/svg%3E"); }
.flag-es { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23AA151B'/%3E%3Crect y='0.5' width='3' height='1' fill='%23F1BF00'/%3E%3C/svg%3E"); }

.lang-arrow {
  font-size: 0.55rem;
  opacity: 0.6;
  transition: transform 0.2s;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  list-style: none;
  padding: 0.3rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  z-index: 200;
  min-width: 100%;
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.45rem 0.9rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.lang-option:hover {
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.05);
}

.lang-option.active {
  color: var(--cyan);
}

/* ---- Main ---- */
main { position: relative; z-index: 1; padding-top: 72px; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 4rem 4rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
}

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

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.live-indicator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0.05;
}

.live-indicator.live {
  color: #00FF88;
  border-color: rgba(0, 255, 136, 0.4);
}

.live-indicator.offline {
  color: var(--pink);
  border-color: var(--border-hot);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.live-dot.live {
  background: #00FF88;
  box-shadow: 0 0 8px #00FF88;
  animation: pulse-dot 1.5s infinite;
}

.live-dot.offline { background: var(--pink); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 .line1 {
  display: block;
  color: var(--text);
  animation: hero-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 .line2 {
  display: block;
  color: var(--text);
  animation: hero-in 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 .name {
  display: block;
  position: relative;
  animation: hero-in 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 .name-text {
  display: inline-block;
  padding-right: 0.12em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 245, 255, 0.3));
}

.hero h1 .name-ghost {
  position: absolute;
  left: 3px;
  top: 3px;
  background: var(--pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  animation: glitch-name 6s infinite;
}

@keyframes glitch-name {
  0%, 85%, 100% { transform: none; clip-path: none; }
  87% { transform: translateX(-6px); clip-path: rect(0, 1000px, 20px, 0); }
  89% { transform: translateX(6px); clip-path: rect(40px, 1000px, 60px, 0); }
  91% { transform: none; clip-path: none; }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(40px) skewX(-5deg); }
  to { opacity: 1; transform: none; }
}

.hero-sub {
  font-size: 1rem;
  color: rgba(232, 244, 255, 0.82);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
  animation: hero-in 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: hero-in 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ---- Boutons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--bg);
  border-radius: var(--radius-sm);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  z-index: -1;
  transition: opacity 0.2s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  z-index: -2;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
  color: var(--bg);
}

.btn-primary:hover::after { opacity: 0.5; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: 1px solid var(--border);
  color: var(--cyan);
  border-radius: var(--radius-sm);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  background: rgba(0, 245, 255, 0.03);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan), inset 0 0 20px rgba(0, 245, 255, 0.05);
  transform: translateY(-2px);
}

/* ---- Avatar hero ---- */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.avatar-outer {
  position: relative;
  width: 380px;
  height: 380px;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(135deg, var(--cyan), var(--pink), var(--purple), var(--cyan)) border-box;
  animation: rotate-ring 8s linear infinite;
}

.avatar-ring-2 {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 245, 255, 0.2);
  animation: rotate-ring 12s linear infinite reverse;
}

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

.avatar-frame {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3), #0a0518);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 245, 255, 0.1);
}

.avatar-frame img {
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 0;
  position: relative;
  z-index: 2;
}

.avatar-frame img.online {
  animation: avatar-dance 1.2s ease-in-out infinite;
  transform-origin: bottom center;
}

.avatar-frame img.offline {
  animation: avatar-sleep 4s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes avatar-dance {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}

@keyframes avatar-sleep {
  0%, 100% {
    transform: rotate(-1deg) translateY(0);
    filter: brightness(0.85);
  }
  50% {
    transform: rotate(1deg) translateY(3px);
    filter: brightness(0.75);
  }
}

/* ---- Effet stase offline ---- */
.avatar-frame.stasis {
  background: linear-gradient(135deg, #011a18, #022e2a);
  box-shadow:
    inset 0 0 50px rgba(0, 245, 200, 0.25),
    inset 0 0 100px rgba(0, 180, 160, 0.1),
    0 0 40px rgba(0, 245, 200, 0.2);
}

.avatar-frame.stasis img {
  filter: brightness(0.8) saturate(0.85);
}

.avatar-frame.stasis::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 245, 200, 0.08);
  pointer-events: none;
  z-index: 5;
}

/* ---- Bulles ---- */
.bubble-container {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 8;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 245, 200, 0.25);
  border: 1px solid rgba(0, 245, 200, 0.6);
  box-shadow: 0 0 6px rgba(0, 245, 200, 0.4);
  animation: bubble-rise linear infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes bubble-rise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(-350px) scale(0.3); opacity: 0; }
}

.avatar-scan {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: linear-gradient(transparent 40%, rgba(0, 245, 255, 0.06) 50%, transparent 60%);
  animation: scan 3s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.avatar-corner {
  position: absolute;
  width: 20px;
  height: 20px;
}
.avatar-corner.tl { top: 25px; left: 25px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.avatar-corner.tr { top: 25px; right: 25px; border-top: 2px solid var(--pink); border-right: 2px solid var(--pink); }
.avatar-corner.bl { bottom: 25px; left: 25px; border-bottom: 2px solid var(--pink); border-left: 2px solid var(--pink); }
.avatar-corner.br { bottom: 25px; right: 25px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

.avatar-tag {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.3rem 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 10;
}

/* ---- Sections ---- */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '>';
  color: var(--pink);
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  max-width: 100px;
}

.section-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--text);
}

/* ---- Divider ---- */
.divider {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border-hot), var(--border), transparent);
  padding: 0 4rem;
}

/* ---- À propos ---- */
.about-grid { display: block; }

/* Wrapper RGB — technique gradient-border correcte */
.about-rgb-wrap {
  position: relative;
  padding: 2px;
  animation: rgb-glow 6s linear infinite;
}

.about-rgb-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #ff0000, #ff6600, #ffff00, #00ff00,
    #00ffff, #0066ff, #cc00ff, #ff0066, #ff0000
  );
  background-size: 400% 100%;
  animation: rgb-wave 6s linear infinite;
}

@keyframes rgb-wave {
  0%   { background-position: 0% 0; }
  100% { background-position: 400% 0; }
}

@keyframes rgb-glow {
  0%   { box-shadow: 0 0 22px rgba(255,0,0,0.35); }
  16%  { box-shadow: 0 0 22px rgba(255,102,0,0.35); }
  33%  { box-shadow: 0 0 22px rgba(0,255,80,0.35); }
  50%  { box-shadow: 0 0 22px rgba(0,200,255,0.35); }
  66%  { box-shadow: 0 0 22px rgba(100,0,255,0.35); }
  83%  { box-shadow: 0 0 22px rgba(255,0,180,0.35); }
  100% { box-shadow: 0 0 22px rgba(255,0,0,0.35); }
}

.about-profile {
  background: var(--card);
  position: relative;
}

.about-profile-body {
  display: grid;
  grid-template-columns: 1fr 280px;
}

.about-profile-main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-right: 1px solid var(--border);
}

.about-bio {
  font-size: 0.95rem;
  color: rgba(232, 244, 255, 0.8);
  line-height: 1.8;
  font-weight: 300;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.about-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, 0.22);
  padding: 0.2rem 0.65rem;
  background: rgba(0, 245, 255, 0.05);
  transition: background 0.15s, border-color 0.15s;
}

.about-tag--cyan       { color: var(--cyan);   border-color: rgba(0,245,255,0.35);   background: rgba(0,245,255,0.07); }
.about-tag--about-chill { color: #5BC8D4;      border-color: rgba(91,200,212,0.35);  background: rgba(91,200,212,0.07); }
.jeu-tag--yellow        { color: #FFE600;      border-color: rgba(255,230,0,0.35);   background: rgba(255,230,0,0.07); }
.about-tag--purple  { color: var(--purple); border-color: rgba(180,79,255,0.35);  background: rgba(180,79,255,0.07); }
.about-tag--orange  { color: #FF8C42;       border-color: rgba(255,140,66,0.35);  background: rgba(255,140,66,0.07); }
.about-tag--teal    { color: #5BC8D4;       border-color: rgba(91,200,212,0.35);  background: rgba(91,200,212,0.07); }
.about-tag--pink    { color: var(--pink);   border-color: rgba(255,45,120,0.35);  background: rgba(255,45,120,0.07); }

/* Tag Trans — texte + contour aux couleurs du drapeau */
.about-tag--trans {
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, #55CDFC, #F7A8B8, #FFFFFF, #F7A8B8, #55CDFC) 1;
  background: linear-gradient(90deg, #55CDFC 0%, #F7A8B8 35%, #FFFFFF 50%, #F7A8B8 65%, #55CDFC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;  /* Firefox */
}

[data-tag-key] { cursor: pointer; }

.about-tag:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.4);
}

/* Panneau données */
.about-profile-data {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(0, 0, 0, 0.2);
}

.about-data-section { display: flex; flex-direction: column; gap: 0.35rem; }

.about-data-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  padding-bottom: 0.45rem;
  margin-bottom: 0.1rem;
  border-bottom: 1px solid var(--border);
}

.about-data-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
}

.about-data-key {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.about-data-val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  text-align: right;
  line-height: 1.3;
}

/* Liste jeux en 2 colonnes pour équilibrer la hauteur */
.about-likes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.6rem;
}

.about-likes li {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: rgba(232, 244, 255, 0.75);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.about-likes li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
  opacity: 0.7;
}

.about-data-val--flags {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.about-data-val--flags .lang-flag {
  width: 20px;
  height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-profile-body { grid-template-columns: 1fr; }
  .about-profile-main { border-right: none; border-bottom: 1px solid var(--border); }
  .about-likes { grid-template-columns: 1fr; }
}

/* ---- Émissions ---- */
.emissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.emission-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.emission-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 30px 0;
  border-color: transparent;
  transition: border-color 0.3s;
}

.emission-card.indie::after { border-right-color: var(--cyan); border-top-color: var(--cyan); }
.emission-card.furry::after { border-right-color: var(--pink); border-top-color: var(--pink); }

.emission-card:hover { transform: translateY(-4px); }

.emission-card.indie:hover { box-shadow: var(--glow-cyan); border-color: rgba(0, 245, 255, 0.4); }
.emission-card.furry:hover { box-shadow: var(--glow-pink); border-color: rgba(255, 45, 120, 0.4); }

.emission-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.emission-card.indie::before { background: linear-gradient(90deg, var(--cyan), transparent); }
.emission-card.furry::before { background: linear-gradient(90deg, var(--pink), transparent); }

.emission-day {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.emission-card.indie .emission-day { color: var(--cyan); }
.emission-card.furry .emission-day { color: var(--pink); }

.emission-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}

.emission-card p {
  color: rgba(232, 244, 255, 0.82);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.9rem;
}

.emission-badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.25rem 0.7rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.emission-card.indie .emission-badge {
  border: 1px solid rgba(0, 245, 255, 0.3);
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.05);
}

.emission-card.furry .emission-badge {
  border: 1px solid rgba(255, 45, 120, 0.3);
  color: var(--pink);
  background: rgba(255, 45, 120, 0.05);
}

/* ---- Stream section ---- */
.stream-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.stream-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
}

.stream-title { color: var(--text); }
.stream-game { color: var(--cyan); }
.stream-viewers { color: var(--pink); }
.stream-separator { color: var(--muted); }

.twitch-player {
  width: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.twitch-player::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--purple));
  z-index: 1;
}

/* ---- Réseaux ---- */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.8rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.social-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: var(--glow-cyan);
}

.social-card:hover::before { transform: scaleX(1); }

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--border);
  position: relative;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.social-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-handle {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
}

/* ---- Nav Contact ---- */
.nav-contact-link {
  color: var(--cyan) !important;
  border: 1px solid rgba(0, 245, 255, 0.3);
  padding: 0.2rem 0.7rem !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-contact-link:hover {
  background: rgba(0, 245, 255, 0.08);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.25);
}

/* ---- Modal Contact ---- */
body.modal-open { overflow: hidden; }

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(2, 4, 8, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  padding: 1rem;
}

.contact-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal {
  background: var(--card);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s;
}

.contact-overlay.open .contact-modal { transform: translateY(0); }

/* Barre RGB en haut */
.contact-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff0000, #ff6600, #ffff00, #00ff00, #00ffff, #0066ff, #cc00ff, #ff0066, #ff0000);
  background-size: 400% 100%;
  animation: rgb-wave 6s linear infinite;
}

.contact-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-modal-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  font-weight: 400;
}

.contact-close {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  transition: color 0.15s;
}
.contact-close:hover { color: var(--pink); }

.contact-intro {
  font-size: 0.85rem;
  color: rgba(232, 244, 255, 0.6);
  line-height: 1.7;
  padding: 1rem 1.5rem 0;
  font-weight: 300;
}

.contact-form { padding: 1.2rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }

.contact-field { display: flex; flex-direction: column; gap: 0.4rem; }

.contact-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-input,
.contact-textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.92rem;
  padding: 0.65rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.08);
}

.contact-input::placeholder,
.contact-textarea::placeholder { color: rgba(232, 244, 255, 0.25); }

.contact-file-wrap { display: flex; align-items: center; gap: 0.8rem; }

input[type="file"]#contact-files { display: none; }

.contact-file-btn {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  border: 1px dashed rgba(0, 245, 255, 0.3);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.contact-file-btn:hover { background: rgba(0, 245, 255, 0.06); border-color: rgba(0, 245, 255, 0.5); }

.contact-file-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.2rem;
}
.contact-file-list li {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: rgba(232, 244, 255, 0.65);
}
.contact-file-list li { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.contact-file-list li em { color: var(--muted); font-style: normal; }

.contact-file-remove {
  font-size: 0.65rem;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 0.3rem;
  flex-shrink: 0;
  transition: color 0.15s;
}
.contact-file-remove:hover { color: var(--pink); }

.contact-file-note {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted);
  opacity: 0.6;
  letter-spacing: 0.06em;
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.contact-btn-cancel {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.contact-btn-cancel:hover { color: var(--text); border-color: rgba(232, 244, 255, 0.3); }

.contact-btn-send {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cyan);
  border: none;
  padding: 0.6rem 1.6rem;
  cursor: pointer;
  transition: box-shadow 0.2s, opacity 0.2s;
}
.contact-btn-send:hover { box-shadow: 0 0 16px rgba(0, 245, 255, 0.5); opacity: 0.9; }

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 3rem 2rem;
  text-align: center;
}

.contact-success-icon {
  font-size: 2.5rem;
  color: #4ade80;
  font-family: 'Share Tech Mono', monospace;
}

.contact-success-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.contact-success-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-email-note {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: rgba(0, 245, 255, 0.03);
}

.contact-email-link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.3rem;
  transition: opacity 0.15s;
}
.contact-email-link:hover { opacity: 0.75; }

.contact-error {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--pink);
  letter-spacing: 0.08em;
  padding: 0.4rem 0;
}

@media (max-width: 480px) {
  .contact-modal { max-height: 95vh; }
  .contact-actions { flex-direction: column-reverse; }
  .contact-btn-cancel, .contact-btn-send { width: 100%; text-align: center; justify-content: center; }
}

/* ---- Bouton retour en haut ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-size: 1.1rem;
  z-index: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .back-to-top { bottom: 1.2rem; right: 1.2rem; width: 38px; height: 38px; }
}

/* ---- Footer ---- */
footer {
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-copy {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.5;
}

.footer-copy .accent { color: var(--cyan); }

/* ---- Responsive ---- */

@media (max-width: 1100px) {
  .hero { padding: 4rem 2.5rem; gap: 2.5rem; }
  .avatar-outer { width: 300px; height: 300px; }
  section, .stream-section { padding: 5rem 2.5rem; }
}

@media (max-width: 900px) {
  /* Nav */
  nav {
    padding: 1rem 1.5rem;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 0.3rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li { padding: 0; }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.05);
  }

  .nav-right {
    position: static;
    transform: none;
    order: 2;
  }
  .lang-menu {
    position: absolute !important;
    top: 100%;
    left: auto;
    right: 0;
  }
  /* Cache le lien Contact dans la nav mobile (accessible via le menu burger) */
  #nav-contact { display: none; }
  .nav-burger { display: flex; position: static; order: 1; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 3rem;
    padding-top: 5rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
    order: -1;
    margin-bottom: 0.5rem;
  }

  .avatar-outer { width: 220px; height: 220px; }

  .avatar-tag {
    font-size: 0.55rem;
    padding: 0.2rem 0.7rem;
    bottom: -20px;
  }

  .avatar-corner { width: 14px; height: 14px; }
  .avatar-corner.tl { top: 18px; left: 18px; }
  .avatar-corner.tr { top: 18px; right: 18px; }
  .avatar-corner.bl { bottom: 18px; left: 18px; }
  .avatar-corner.br { bottom: 18px; right: 18px; }

  .hero-sub { max-width: 100%; }

  /* Sections */
  section, .stream-section { padding: 3.5rem 1.5rem; }

  .emissions-grid { grid-template-columns: 1fr; }

  /* Nouvelles sections */
  .jeux-row { grid-template-columns: 1fr 1fr; }

  /* Schedule */
  .schedule-date-block {
    min-width: 68px;
    padding: 1rem 1rem;
  }
  .schedule-day-num { font-size: 2rem; }
  .schedule-info { padding: 1rem 1.2rem; }
  .schedule-btn { padding: 1rem 1rem; font-size: 0.62rem; }
}

/* Touch devices */
@media (hover: none) {
  body, body.js-cursor { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ---- Accessibilité : réduction des animations ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html { scroll-behavior: auto; }

  /* Désactiver les effets visuels lourds */
  body::before, body::after { display: none; }
  .avatar-ring, .avatar-ring-2, .avatar-scan { animation: none; }
  .bubble-container { display: none; }
  .name-ghost { display: none; }
  nav::after { animation: none; }
}

/* Petit téléphone */
@media (max-width: 480px) {
  nav { padding: 0.8rem 1rem; }

  .hero {
    padding: 1.5rem 1rem 2.5rem;
    padding-top: 4.5rem;
    gap: 1.5rem;
  }

  .avatar-outer { width: 180px; height: 180px; }
  .avatar-tag { display: none; }

  section, .stream-section { padding: 2.5rem 1rem; }

  .section-title { margin-bottom: 2rem; }

  .hero-buttons { flex-direction: column; }

  .btn-primary, .btn-secondary {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .about-card { padding: 1.2rem; }
  .emission-card { padding: 1.5rem; }
  .emission-card h3 { font-size: 1.5rem; }

  /* Schedule mobile : empilement vertical */
  /* !important nécessaire : le CSS desktop du planning est déclaré après ce bloc */
  .schedule-card {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .schedule-date-block {
    grid-column: 1 !important;
    grid-row: 1 !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.6rem 1rem !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    background: rgba(0, 245, 255, 0.04) !important;
    min-width: 0 !important;
  }

  .schedule-day-num { font-size: 1.3rem !important; margin: 0 !important; }
  .schedule-weekday { letter-spacing: 0.1em; }
  .schedule-month-label { letter-spacing: 0.08em; }

  .schedule-time-badge {
    margin-top: 0 !important;
    margin-left: auto !important;
  }

  .schedule-today-badge { margin-top: 0; }

  .schedule-info {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 0.8rem 1rem !important;
    min-width: 0;
    overflow: hidden;
  }

  .schedule-btn {
    grid-column: 1 !important;
    grid-row: 3 !important;
    border-left: none !important;
    border-top: 1px solid var(--border) !important;
    padding: 0.7rem 1rem !important;
    align-self: auto !important;
    text-align: center !important;
    font-size: 0.62rem !important;
  }

  .schedule-title {
    font-size: 0.95rem !important;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Tags "À propos" */
  .about-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.4rem !important;
    margin-top: 1rem !important;
  }
  .about-tag {
    display: inline-flex !important;
    padding: 0.2rem 0.55rem !important;
  }

  /* Tags des jeux */
  .jeu-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
  }
  .jeu-tag {
    display: inline-flex !important;
  }

  /* Photo fursuit */
  .fursuit-photo {
    max-height: 60vh;
    width: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* Section "À propos" — profil card */
  .about-profile-body {
    grid-template-columns: 1fr !important;
  }
  .about-profile-main {
    padding: 1.2rem !important;
  }
  .about-profile-data {
    padding: 1rem !important;
  }
  .about-data-row {
    flex-wrap: wrap;
    gap: 0.3rem;
  }

  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  .social-card { padding: 1.2rem 0.8rem; }

  .jeux-row { grid-template-columns: 1fr; }
  .btn-telegram { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================
   PLANNING TWITCH
   ============================================ */

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: stretch;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  animation: schedule-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  min-height: 88px;
}

@keyframes schedule-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}

.schedule-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  opacity: 0;
  transition: opacity 0.3s;
}

.schedule-card:hover {
  border-color: rgba(0, 245, 255, 0.35);
  box-shadow: var(--glow-cyan);
  transform: translateX(3px);
}

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

.schedule-card.today {
  border-color: rgba(0, 245, 255, 0.4);
}

.schedule-card.today::before { opacity: 1; }

/* Bloc date (gauche) */
.schedule-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.4rem;
  min-width: 80px;
  border-right: 1px solid var(--border);
  background: rgba(0, 245, 255, 0.03);
  gap: 0.05rem;
  align-self: stretch;
}

.schedule-card.today .schedule-date-block {
  background: rgba(0, 245, 255, 0.07);
  border-right-color: rgba(0, 245, 255, 0.3);
}

.schedule-weekday {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.schedule-day-num {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--text);
  line-height: 1;
  margin: 0.1rem 0;
  text-shadow: 0 0 20px rgba(232, 244, 255, 0.2);
}

.schedule-month-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-time-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--pink);
  letter-spacing: 0.06em;
  margin-top: 0.55rem;
  text-shadow: 0 0 8px rgba(255, 45, 120, 0.3);
}

.schedule-today-badge {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.1rem 0.4rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 45, 120, 0.5);
  color: var(--pink);
  background: rgba(255, 45, 120, 0.1);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* Infos (centre) */
.schedule-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 1.2rem 1.8rem;
}

.schedule-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.3;
}

.schedule-game {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.06em;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bouton calendrier (droite) */
.schedule-btn {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  border-left: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.schedule-btn:hover {
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.05);
}

.schedule-tz {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
}

.schedule-empty {
  padding: 3rem;
  text-align: center;
  border: 1px dashed var(--border);
}

.schedule-empty-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ============================================
   NOUVELLES SECTIONS
   ============================================ */

/* ---- Hero stats (live + followers) ---- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-stats .live-indicator { margin-bottom: 0; }

.followers-badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
}

.followers-count {
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.35);
}

/* ---- Bouton Telegram ---- */
.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(91, 200, 212, 0.4);
  color: #5BC8D4;
  border-radius: var(--radius-sm);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  background: rgba(91, 200, 212, 0.04);
}

.btn-telegram:hover {
  border-color: #5BC8D4;
  box-shadow: 0 0 20px rgba(91, 200, 212, 0.3);
  transform: translateY(-2px);
}

.btn-kofi {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #FF5E5B;
  color: #FF5E5B;
  background: rgba(255, 94, 91, 0.07);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-kofi:hover {
  background: rgba(255, 94, 91, 0.18);
  box-shadow: 0 0 14px rgba(255, 94, 91, 0.35);
  color: #fff;
}

/* ---- Clip du moment ---- */
.clip-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .clip-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.clip-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.clip-embed::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  z-index: 1;
}

.clip-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.clip-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clip-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.3;
}

.clip-meta {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.clip-views { color: var(--cyan); }

.clip-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--cyan);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.clip-watch-btn:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.clip-empty-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.clip-all-link {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.clip-all-link:hover { color: var(--cyan); }

/* ---- VODs YouTube ---- */
.vods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vod-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.vod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: var(--glow-cyan);
}

.vod-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.vod-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vod-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vod-date {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vod-watch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.8rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

.vods-empty {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.vods-see-all {
  margin-top: 2rem;
  text-align: center;
}

.vods-see-all-btn {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.6rem 1.4rem;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.vods-see-all-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

/* ---- Jeux ---- */
.jeux-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ---- Filtre par tag ---- */
.jeux-filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 245, 255, 0.04);
  border: 1px solid rgba(0, 245, 255, 0.2);
  margin-bottom: 1rem;
}

.jeux-filter-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--cyan);
  text-transform: uppercase;
  flex: 1;
}

.jeux-filter-clear {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.2rem 0.7rem;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.jeux-filter-clear:hover { color: var(--pink); border-color: var(--pink); }

.jeux-empty {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding: 2rem 0;
  text-align: center;
}

/* État actif des tags filtrés */
.tag-filter-active {
  box-shadow: 0 0 10px currentColor;
  opacity: 1 !important;
}

.jeux-group-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: -0.5rem;
}

.jeux-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.jeu-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.jeu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 120, 0.35);
  box-shadow: var(--glow-pink);
}

.jeu-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.jeu-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.jeu-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.jeu-desc {
  font-size: 0.92rem;
  color: rgba(232, 244, 255, 0.8);
  line-height: 1.72;
  font-weight: 300;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jeu-badge-favorite {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 230, 0, 0.4);
  color: var(--yellow);
  background: rgba(255, 230, 0, 0.06);
  align-self: flex-start;
  margin-bottom: 0.3rem;
}

.jeu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.6rem;
}

.jeu-tag {
  padding: 0.15rem 0.55rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(0, 245, 255, 0.03);
}

.jeu-tag--cyan    { border-color: rgba(0, 245, 255, 0.4);  color: var(--cyan);   background: rgba(0, 245, 255, 0.06); }
.jeu-tag--purple  { border-color: rgba(180, 79, 255, 0.4); color: var(--purple); background: rgba(180, 79, 255, 0.06); }
.jeu-tag--pink    { border-color: rgba(255, 45, 120, 0.4); color: var(--pink);   background: rgba(255, 45, 120, 0.06); }
.jeu-tag--orange  { border-color: rgba(255, 179, 71, 0.4); color: #FFB347;       background: rgba(255, 179, 71, 0.06); }
.jeu-tag--green   { border-color: rgba(80, 220, 120, 0.4); color: #50DC78;       background: rgba(80, 220, 120, 0.06); }
.jeu-tag--teal    { border-color: rgba(0, 200, 180, 0.4);  color: #00C8B4;       background: rgba(0, 200, 180, 0.06); }

.jeu-hours {
  margin-top: 0.55rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: rgba(0, 245, 255, 0.5);
  letter-spacing: 0.05em;
}

/* ---- Collapse jeux terminés ---- */
.jeux-collapse-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  background: rgba(0, 245, 255, 0.02);
  border: 1px dashed rgba(0, 245, 255, 0.25);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: left;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.jeux-collapse-btn:hover {
  background: rgba(0, 245, 255, 0.06);
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: var(--glow-cyan);
}

.jeux-collapse-count { color: var(--muted); }

.jeux-collapse-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, 0.35);
  padding: 0.1rem 0.45rem;
  letter-spacing: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}

.jeux-collapse-btn:hover .jeux-collapse-arrow {
  background: rgba(0, 245, 255, 0.1);
}

.jeux-collapse-btn[aria-expanded="true"] .jeux-collapse-arrow {
  transform: rotate(180deg);
}

.jeux-finished-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.jeux-finished-panel.open { grid-template-rows: 1fr; }

.jeux-finished-inner {
  overflow: hidden;
  padding-top: 0;
  transition: padding-top 0.35s ease;
}

.jeux-finished-panel.open .jeux-finished-inner { padding-top: 1.5rem; }

/* ---- Fursuit ---- */
.fursuit-container {
  display: flex;
  justify-content: center;
}

.fursuit-photo-wrap {
  position: relative;
  max-width: 660px;
  width: 100%;
  border: 1px solid var(--border);
  overflow: hidden;
}

.fursuit-photo-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  z-index: 1;
}

.fursuit-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  z-index: 1;
}

.fursuit-photo {
  width: 100%;
  display: block;
  object-fit: cover;
}

.fursuit-credit {
  padding: 0.6rem 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
  border-top: 1px solid var(--border);
}

.fursuit-credit a {
  color: var(--pink);
  transition: color 0.2s;
}

.fursuit-credit a:hover { color: var(--cyan); }

/* ---- Conventions ---- */
.conventions-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---- Convention card redesign ---- */
.convention-card {
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.convention-card:hover {
  border-color: rgba(180, 79, 255, 0.45);
  box-shadow: 0 0 24px rgba(180, 79, 255, 0.12);
}

.convention-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem 0.85rem;
  border-bottom: 1px solid var(--border);
}

.convention-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.convention-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
}

.convention-name-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.convention-name-link:hover { color: var(--purple); }

.convention-city {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  color: var(--purple);
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.convention-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.convention-tag {
  padding: 0.2rem 0.6rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
}

.convention-tag--staff {
  border-color: rgba(255, 179, 71, 0.5);
  color: #FFB347;
  background: rgba(255, 179, 71, 0.07);
}

.convention-tag--attendee {
  border-color: rgba(0, 245, 255, 0.4);
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.05);
}

.convention-meta {
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid rgba(180, 79, 255, 0.08);
}

.convention-date-block {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.convention-month {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: var(--purple);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.convention-days {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--text);
  line-height: 1;
}

.convention-year {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.convention-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.4rem;
  background: rgba(180, 79, 255, 0.025);
  flex-wrap: wrap;
}

.convention-langs {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.convention-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-block;
  flex-shrink: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.convention-hug {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.convention-empty {
  padding: 3rem;
  text-align: center;
  border: 1px dashed var(--border);
}

.convention-empty-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ---- Conventions passées (collapse) ---- */
.conventions-collapse-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 1.2rem;
  background: rgba(180, 79, 255, 0.03);
  border: 1px dashed rgba(180, 79, 255, 0.3);
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: color 0.2s, border-color 0.2s;
}

.conventions-collapse-btn:hover {
  color: var(--purple);
  border-color: rgba(180, 79, 255, 0.55);
}

.conventions-collapse-count {
  opacity: 0.6;
}

.conventions-collapse-arrow {
  margin-left: auto;
  font-size: 0.85rem;
  transition: transform 0.25s;
}

.conventions-collapse-btn[aria-expanded="true"] .conventions-collapse-arrow {
  transform: rotate(180deg);
}

.conventions-past-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.conventions-past-panel.open {
  grid-template-rows: 1fr;
}

.conventions-past-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0;
  transition: padding-top 0.3s;
}

.conventions-past-panel.open .conventions-past-inner {
  padding-top: 0.8rem;
}

.convention-card--past {
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.3s;
}

.convention-card--past:hover {
  opacity: 1;
}

/* ---- Guide convention Do's & Don'ts ---- */
.convention-guide {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.convention-guide:empty { display: none; }

.convention-guide-header {
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--purple);
  text-transform: uppercase;
}

.convention-guide-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .convention-guide-body { grid-template-columns: 1fr; }
}

.convention-guide-col {
  padding: 1.2rem 1.4rem;
}

.convention-guide-col + .convention-guide-col {
  border-left: 1px solid var(--border);
}

@media (max-width: 600px) {
  .convention-guide-col + .convention-guide-col {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

.convention-guide-col-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.convention-guide-col--dos .convention-guide-col-title { color: #50DC78; }
.convention-guide-col--donts .convention-guide-col-title { color: var(--pink); }

.convention-guide-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.convention-guide-list li {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.convention-guide-list li::before {
  flex-shrink: 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.convention-guide-col--dos .convention-guide-list li::before {
  content: '✓';
  color: #50DC78;
}

.convention-guide-col--donts .convention-guide-list li::before {
  content: '✕';
  color: var(--pink);
}

/* ---- Crédit avatar ---- */
.avatar-credit {
  text-align: center;
  margin-top: 2rem; /* compense le avatar-tag à -24px */
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.avatar-credit a {
  color: var(--cyan);
  transition: color 0.2s;
}

.avatar-credit a:hover { color: var(--pink); }

/* ---- VOD embed lazy ---- */
.vod-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.vod-embed .vod-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.vod-embed:hover .vod-thumbnail { opacity: 0.7; }

.vod-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.vod-embed:hover .vod-play-btn { background: rgba(255, 45, 120, 0.5); }

.vod-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Scroll horizontal mobile : jeux ---- */
@media (max-width: 700px) {
  .jeux-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
  }
  .jeux-row::-webkit-scrollbar { height: 3px; }
  .jeux-row::-webkit-scrollbar-track { background: transparent; }
  .jeux-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
  .jeu-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }
}

/* ---- Bouton voir plus VODs ---- */
.vods-more-btn {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.vods-more-btn button {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--cyan);
  background: transparent;
  border: 1px dashed rgba(0, 245, 255, 0.35);
  padding: 0.6rem 1.8rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.vods-more-btn button:hover {
  background: rgba(0, 245, 255, 0.06);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.15);
}

/* ============================================
   PRIDE MONTH — Couleurs drapeau trans 🏳️‍⚧️
   À retirer après juin 2026
   ============================================ */

/* Banderole trans (5 bandes égales du drapeau) */
.pride-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right,
    #55CDFC 0% 20%,
    #F7A8B8 20% 40%,
    #FFFFFF 40% 60%,
    #F7A8B8 60% 80%,
    #55CDFC 80% 100%
  );
  z-index: 10003;
}

/* Décaler la nav et la loading bar pour la banderole */
nav { top: 6px; }
body.is-offline nav { top: calc(6px + 34px); }
#loading-bar { top: 6px; }

/* Mini drapeau trans (remplace l'emoji 🏳️‍⚧️ non supporté partout) */
.pride-flag-icon {
  display: inline-block;
  width: 16px;
  height: 11px;
  background: linear-gradient(to bottom,
    #55CDFC 0% 20%, #F7A8B8 20% 40%,
    #FFFFFF 40% 60%,
    #F7A8B8 60% 80%, #55CDFC 80% 100%
  );
  vertical-align: middle;
  flex-shrink: 0;
  margin: 0 0.2rem;
}

/* Bandeau Pride Month animé */
.pride-month-banner {
  position: fixed;
  top: calc(6px + 58px);
  left: 0; right: 0;
  z-index: 590;
  height: 48px;
  overflow: hidden;
  /* clip-path pour Firefox (overflow:hidden ne clip pas will-change:transform) */
  clip-path: inset(0);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg,
    rgba(85, 205, 252, 0.12),
    rgba(247, 168, 184, 0.10),
    rgba(85, 205, 252, 0.12)
  );
  border-bottom: 1px solid rgba(85, 205, 252, 0.25);
  backdrop-filter: blur(6px);
}

.pride-month-banner.hidden { display: none; }

.pride-month-track {
  display: flex;
  white-space: nowrap;
  flex-wrap: nowrap;          /* Firefox : empêche le retour à la ligne */
  flex-shrink: 0;
  animation: pride-scroll 22s linear infinite;
  /* Pas de will-change: transform — Firefox ne clip pas overflow sur ces éléments */
}

.pride-month-track span {
  font-family: 'Exo 2', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;        /* Firefox : forcer sur chaque span */
  flex-shrink: 0;
  background: linear-gradient(90deg, #55CDFC, #F7A8B8, #FFFFFF, #F7A8B8, #55CDFC);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;         /* Firefox : fallback pour -webkit-text-fill-color */
  animation: pride-shimmer 5s linear infinite;
}

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

@keyframes pride-shimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 250% 0; }
}

.pride-month-close {
  position: absolute;
  right: 1rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  flex-shrink: 0;
  transition: color 0.15s;
  z-index: 1;
}
.pride-month-close:hover { color: #F7A8B8; }

/* Décaler le main pour le bandeau pride */
main#main-content { margin-top: 48px; }

/* Fond avec très légères bandes trans */
body {
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(85, 205, 252, 0.018) 0px, rgba(85, 205, 252, 0.018) 20%,
    rgba(247, 168, 184, 0.018) 20%, rgba(247, 168, 184, 0.018) 40%,
    rgba(255, 255, 255, 0.008) 40%, rgba(255, 255, 255, 0.008) 60%,
    rgba(247, 168, 184, 0.018) 60%, rgba(247, 168, 184, 0.018) 80%,
    rgba(85, 205, 252, 0.018) 80%, rgba(85, 205, 252, 0.018) 100%
  );
  background-size: 100% 600px;
}

/* Nom "Zekko" en dégradé trans animé */
.name-text {
  background: linear-gradient(90deg, #55CDFC, #F7A8B8, #FFFFFF, #F7A8B8, #55CDFC) !important;
  background-size: 250% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;  /* Firefox */
  animation: pride-shimmer 5s linear infinite !important;
  text-shadow: none !important;
}

/* Titres de sections avec teinte trans */
.section-title {
  background: linear-gradient(90deg, #55CDFC 0%, #F7A8B8 50%, #FFFFFF 75%, #55CDFC 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;  /* Firefox */
  animation: pride-shimmer 6s linear infinite;
}

/* Couleurs d'accent trans */
:root {
  --cyan:       #55CDFC;
  --pink:       #F7A8B8;
  --purple:     #B8E4FF;
  --border:     rgba(85, 205, 252, 0.14);
  --border-hot: rgba(247, 168, 184, 0.35);
  --glow-cyan:  0 0 20px rgba(85, 205, 252, 0.45);
  --glow-pink:  0 0 20px rgba(247, 168, 184, 0.45);
  --muted:      #A8C8D8;
}

/* Loading bar aux couleurs trans */
#loading-bar {
  background: linear-gradient(90deg, #55CDFC, #F7A8B8, #FFFFFF, #F7A8B8, #55CDFC);
  background-size: 300% 100%;
}

/* About card — gradient trans au lieu du rainbow */
.about-rgb-wrap::before {
  background: linear-gradient(90deg,
    #55CDFC, #F7A8B8, #FFFFFF, #F7A8B8, #55CDFC
  ) !important;
  background-size: 400% 100% !important;
}

@keyframes rgb-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(85, 205, 252, 0.45); }
  50%       { box-shadow: 0 0 24px rgba(247, 168, 184, 0.45); }
}

/* Contact modal — gradient trans */
.contact-modal::before {
  background: linear-gradient(90deg,
    #55CDFC, #F7A8B8, #FFFFFF, #F7A8B8, #55CDFC
  ) !important;
  background-size: 400% 100% !important;
}

@media (max-width: 700px) {
  .pride-month-banner {
    overflow: hidden !important;
    max-height: 40px;
    height: 40px;
  }
  .pride-month-track {
    white-space: nowrap !important;
    overflow: hidden !important;
    animation-duration: 30s;
  }
  .pride-month-track span,
  .pride-month-track * {
    white-space: nowrap !important;
  }
  /* Décalage de la nav pour le bandeau réduit */
  nav { top: calc(6px + 40px) !important; }
  main#main-content { margin-top: 40px !important; }
}