/* ============================================
   GUINEE TV 1 — Thème moderne glassmorphism
   ============================================ */
:root {
  --c-red: #ce1126;
  --c-yellow: #fcd116;
  --c-green: #009645;
  --c-gold: #d4af37;
  --c-bg: #0a0e17;
  --c-bg2: #111827;
  --c-surface: rgba(255, 255, 255, 0.06);
  --c-surface-strong: rgba(255, 255, 255, 0.10);
  --c-border: rgba(255, 255, 255, 0.12);
  --c-text: #f5f7fa;
  --c-text-muted: #9aa5b1;
  --c-primary: var(--c-gold);
  --grad-guinee: linear-gradient(135deg, #ce1126 0%, #fcd116 50%, #009645 100%);
  --grad-gold: linear-gradient(135deg, #d4af37 0%, #f7e7a0 50%, #d4af37 100%);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1320px;
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 15% 10%, rgba(0,150,69,0.18), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(206,17,38,0.18), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(252,209,22,0.10), transparent 45%);
  background-attachment: fixed;
  position: relative;
}

/* ===== ARRIÈRE-PLAN ANIMÉ — ORBS FLOTTANTS ===== */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 22s ease-in-out infinite;
}
body::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--c-gold), transparent 70%);
  top: -120px; right: -100px;
  animation-delay: 0s;
}
body::after {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--c-green), transparent 70%);
  bottom: -180px; left: -140px;
  animation-delay: -11s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px,-40px) scale(1.12); }
  66% { transform: translate(-40px,60px) scale(0.92); }
}
/* mesh gradient subtil qui bouge */
.bg-mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(125deg, transparent 40%, rgba(212,175,55,0.04) 50%, transparent 60%);
  background-size: 300% 300%;
  animation: meshMove 18s ease infinite;
}
@keyframes meshMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* contenu au-dessus des orbs */
.site-header, .topbar, .hero, .section, footer.site-footer, .breaking, .mobile-nav, .backdrop, .search-overlay { position: relative; z-index: 1; }
.hero { z-index: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-gold); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #05070d; }
::-webkit-scrollbar-thumb { background: var(--grad-gold); border-radius: 10px; }

/* Glass utility */
.glass {
  background: var(--c-surface);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.glass-strong {
  background: var(--c-surface-strong);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--c-border);
}

/* ===== TOP BAR — Néon miroir animé ===== */
.topbar {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 24px; font-size: 12px;
  background: rgba(0,0,0,0.65); color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
  gap: 12px; flex-wrap: wrap;
  min-height: 34px;
}
.topbar::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg,
    rgba(236,72,153,0.12) 0%,
    rgba(168,85,247,0.12) 25%,
    rgba(59,130,246,0.12) 50%,
    rgba(168,85,247,0.12) 75%,
    rgba(236,72,153,0.12) 100%);
  background-size: 300% 100%;
  animation: neonShift 8s linear infinite;
  backdrop-filter: blur(8px);
}
@keyframes neonShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.topbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-phone {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 700; font-size: 12px; color: var(--c-text);
  transition: color .25s;
}
.topbar-phone:hover { color: var(--c-gold); }
.topbar-phone svg { opacity: 0.8; }
.topbar-sep { width: 1px; height: 14px; background: var(--c-border); }
.topbar .date { letter-spacing: .3px; font-size: 12px; }
.topbar .stickers { display: flex; gap: 8px; flex-wrap: wrap; }
.sticker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 11px; border-radius: 999px;
  background: var(--c-surface-strong); border: 1px solid var(--c-border);
  font-weight: 600; font-size: 11px; color: var(--c-text);
  transition: all .25s;
}
.sticker:hover { background: var(--c-gold); color: #0a0e17; transform: translateY(-1px); }
.sticker.live { background: var(--c-red); color: #fff; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(206,17,38,.7)} 50%{box-shadow:0 0 0 8px rgba(206,17,38,0)} }

.topbar .social { display: flex; gap: 6px; align-items: center; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--c-surface-strong); border: 1px solid var(--c-border);
  color: var(--c-text-muted); transition: all .25s;
}
.social-icon:hover {
  background: var(--c-gold); color: #0a0e17; border-color: var(--c-gold);
  transform: translateY(-2px); box-shadow: 0 4px 14px rgba(212,175,55,0.4);
}

/* ===== HEADER ===== */
:root { --header-h: 62px; }
header.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px; height: var(--header-h);
  background: rgba(10,14,23,0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s;
}
.logo { font-size: 24px; font-weight: 900; letter-spacing: -0.5px;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase;
}
.logo-img img {
  height: 42px; width: auto; max-width: 160px; object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.5));
}
@media (max-width: 768px) {
  .logo-img img { height: 34px; max-width: 130px; }
  .logo { font-size: 20px; }
}
.logo span { color: var(--c-red); -webkit-text-fill-color: var(--c-red); }
.logo::before {
  content: ''; width: 12px; height: 12px; border-radius: 50%;
  background: var(--c-red); box-shadow: 0 0 12px var(--c-red);
  animation: pulse 1.4s infinite;
}

nav.main-nav { display: flex; gap: 2px; align-items: center; }
nav.main-nav a {
  padding: 6px 12px; border-radius: 999px; font-weight: 600; font-size: 13px;
  color: var(--c-text-muted); transition: all .25s; white-space: nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--c-text); background: var(--c-surface-strong);
}
nav.main-nav a.active { color: var(--c-gold); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.search-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; font-weight: 600; font-size: 12px;
  border: 1px solid var(--c-border);
  cursor: pointer; transition: all .25s;
  min-height: 34px;
  background: rgba(255,255,255,0.92); color: #0a0e17;
  border-color: rgba(255,255,255,0.4);
}
.search-btn:hover { background: var(--c-gold); color: #0a0e17; border-color: var(--c-gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px;
  align-items: center; justify-content: center; border-radius: 10px;
  background: var(--c-surface-strong); border: 1px solid var(--c-border); cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===== BREAKING TICKER ===== */
.breaking {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 24px; background: var(--c-red); color: #fff; font-size: 13px;
  overflow: hidden;
}
.breaking .label {
  font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  background: #000; padding: 4px 12px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.breaking .label::before {
  content: ''; width: 8px; height: 8px; background: var(--c-red); border-radius: 50%;
  border: 1px solid #fff; animation: pulse 1.2s infinite;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker { display: inline-flex; gap: 48px; white-space: nowrap; animation: scroll-left 30s linear infinite; }
.ticker:hover { animation-play-state: paused; }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== HERO / CARROUSEL D'ARTICLES ===== */
.hero {
  position: relative; height: 78vh; min-height: 520px; max-height: 760px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-carousel {
  position: absolute; inset: 0; z-index: 0;
  display: flex; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.carousel-track {
  display: flex; gap: 8px; padding: 0 4px;
  animation: carousel-scroll 60s linear infinite;
  will-change: transform;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.carousel-slide {
  flex: 0 0 auto; width: clamp(260px, 32vw, 420px); height: 78vh; min-height: 520px; max-height: 760px;
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
  transition: transform .6s ease;
}
.carousel-slide:hover img { transform: scale(1.05); }
.carousel-ph {
  width: 100%; height: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a2332, #0f1620);
  font-size: 72px;
}
.carousel-meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.95));
  display: flex; flex-direction: column; gap: 8px;
}
.cat-tag-sm {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
  width: fit-content; color: #0a0e17;
}
.carousel-meta > span:last-child {
  font-size: 13px; font-weight: 600; color: #f5f7fa;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,14,23,0.35) 0%, rgba(10,14,23,0.25) 40%, rgba(10,14,23,0.92) 100%),
    radial-gradient(circle at 50% 50%, transparent, rgba(10,14,23,0.55));
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 960px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 13px;
  background: var(--c-surface-strong); border: 1px solid var(--c-border);
  backdrop-filter: blur(10px); margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--c-green); border-radius: 50%;
  box-shadow: 0 0 10px var(--c-green); animation: pulse 1.6s infinite;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 88px); font-weight: 900; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 0%, var(--c-gold) 40%, #fff 55%, var(--c-gold) 75%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: fadeUp 1s ease .1s both, shimmerText 6s linear infinite;
}
@keyframes shimmerText { to { background-position: 200% center; } }
.hero p.subtitle {
  font-size: clamp(15px, 2.2vw, 22px); color: rgba(245,247,250,0.85);
  margin-bottom: 32px; animation: fadeUp 1s ease .25s both;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s ease .4s both; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all .3s; border: none; position: relative; overflow: hidden;
}
.btn-primary { background: var(--grad-gold); color: #0a0e17; box-shadow: var(--shadow-glow); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  background-size: 250% 100%; background-position: -100% 0;
  transition: background-position .6s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 50px rgba(212,175,55,0.55); }
.btn-primary:hover::before { background-position: 200% 0; }
.btn-ghost { background: var(--c-surface-strong); color: var(--c-text); border: 1px solid var(--c-border); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--c-surface-strong); color: var(--c-gold); border-color: var(--c-gold); }

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

/* ===== CONTAINER ===== */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px;
}
.section-title {
  font-size: 28px; font-weight: 800; display: flex; align-items: center; gap: 12px;
}
.section-title::before {
  content: ''; width: 6px; height: 30px; border-radius: 6px;
  background: var(--grad-guinee);
}
.section-title .badge {
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: var(--c-surface-strong); color: var(--c-gold);
}

/* ===== FEATURED ===== */
.featured-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 24px;
}
.featured-main { position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden; }
.featured-main img, .featured-main .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-main .ph {
  background: linear-gradient(135deg, #1a2332, #0f1620);
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.featured-main .meta {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.95));
}
.cat-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 6px; margin-bottom: 12px;
  background: var(--c-gold); color: #0a0e17;
}
.featured-main h2 { font-size: 26px; font-weight: 800; line-height: 1.25; }
.featured-main .time { color: var(--c-text-muted); font-size: 13px; margin-top: 8px; }

.featured-side { display: flex; flex-direction: column; gap: 14px; }
.featured-card {
  display: flex; gap: 14px; padding: 12px; border-radius: var(--radius-sm);
  transition: all .3s;
}
.featured-card:hover { background: var(--c-surface-strong); transform: translateX(4px); }
.featured-card .thumb { width: 110px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: linear-gradient(135deg,#1a2332,#0f1620); }
.featured-card h3 { font-size: 15px; font-weight: 700; line-height: 1.35; margin-bottom: 4px; }
.featured-card .time { font-size: 12px; color: var(--c-text-muted); }

/* ===== ARTICLE GRID ===== */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; perspective: 1000px; }
.article-card {
  border-radius: var(--radius); overflow: hidden;
  transition: all .4s cubic-bezier(.2,.8,.2,1); cursor: pointer;
  position: relative;
}
.article-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 30%, rgba(212,175,55,0.12) 50%, transparent 70%);
  background-size: 200% 200%; opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-glow), 0 12px 40px rgba(0,0,0,0.5); border-color: rgba(212,175,55,0.4); }
.article-card:hover::after { opacity: 1; animation: shimmerText 3s linear infinite; }
.article-card .thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #1a2332, #0f1620);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.article-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.article-card:hover .thumb img { transform: scale(1.1); }
.article-card .body { padding: 16px 4px; }
.article-card h3 { font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; transition: color .3s; }
.article-card:hover h3 { color: var(--c-gold); }
.article-card .excerpt { font-size: 13.5px; color: var(--c-text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card .meta { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 12px; color: var(--c-text-muted); }
.article-card .meta .dot { width: 3px; height: 3px; background: currentColor; border-radius: 50%; }
/* bouton partage rapide sur carte */
.share-mini {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,14,23,0.75); backdrop-filter: blur(8px);
  border: 1px solid var(--c-border); color: #fff; font-size: 15px; cursor: pointer;
  opacity: 0; transform: scale(0.8) translateY(-4px); transition: all .3s;
}
.article-card:hover .share-mini { opacity: 1; transform: scale(1) translateY(0); }
.share-mini:hover { background: var(--c-gold); color: #0a0e17; transform: scale(1.1); }
/* sur mobile, toujours visible */
@media (max-width: 768px) { .article-card .share-mini { opacity: 1; transform: scale(1); } }

/* ===== ADS ===== */
.ad-space {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 28px; border-radius: var(--radius-sm); border: 1px dashed var(--c-border);
  background: var(--c-surface); color: var(--c-text-muted); font-size: 13px;
  min-height: 100px; transition: all .3s;
}
.ad-space:hover { border-color: var(--c-gold); color: var(--c-gold); }
.ad-banner {
  width: 100%; min-height: 90px; border-radius: var(--radius-sm); overflow: hidden;
  margin: 24px 0; position: relative;
}
.ad-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ===== VIDEOS ===== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.video-card {
  border-radius: var(--radius); overflow: hidden; transition: all .35s;
}
.video-card:hover { transform: translateY(-4px); }
.video-card .thumb {
  aspect-ratio: 16/9; position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: #000;
}
.video-card .thumb iframe { width: 100%; height: 100%; border: 0; }
.video-card .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); transition: opacity .3s;
}
.video-card .play button {
  width: 64px; height: 64px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--grad-gold); color: #0a0e17; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s; box-shadow: var(--shadow-glow);
}
.video-card .play button:hover { transform: scale(1.15); }
.video-card .live-badge {
  position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 6px;
  background: var(--c-red); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  display: flex; align-items: center; gap: 6px;
}
.video-card .live-badge::before { content:''; width:6px; height:6px; background:#fff; border-radius:50%; animation: pulse 1.4s infinite; }
.video-card h3 { padding: 14px 4px 4px; font-size: 16px; font-weight: 700; }
.video-card .desc { padding: 0 4px 12px; font-size: 13px; color: var(--c-text-muted); }

/* ===== LAYOUT ===== */
.layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { padding: 20px; }
.sidebar-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.sidebar-card h4::before { content:''; width:4px; height:18px; background: var(--grad-guinee); border-radius: 4px; }
.popular-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pop-thumb {
  width: 64px; height: 48px; border-radius: 8px; object-fit: cover;
  flex-shrink: 0; margin-left: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  border: 1px solid var(--c-border);
  display: block;
}
.popular-list li { display: flex; gap: 10px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--c-border); }
.popular-list li:last-child { border-bottom: none; padding-bottom: 0; }
.popular-list .num {
  font-size: 26px; font-weight: 900; line-height: 1; flex-shrink: 0;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  min-width: 30px;
}
.popular-list .info h5 { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.popular-list .info .time { font-size: 11px; color: var(--c-text-muted); margin-top: 4px; }
.pop-thumb {
  width: 60px; height: 44px; border-radius: 8px; object-fit: cover;
  flex-shrink: 0; margin-left: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid var(--c-border);
}

/* ===== RUBRIQUE LIST (sidebar) ===== */
.rubrique-list {
  list-style: none; display: flex; flex-direction: column;
}
.rubrique-list li {
  border-bottom: 1px solid var(--c-border);
}
.rubrique-list li:last-child { border-bottom: none; }
.rubrique-list a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 4px; font-size: 14px; font-weight: 600;
  color: var(--c-text); transition: all .2s;
}
.rubrique-list a:hover { color: var(--c-gold); padding-left: 10px; }
.rub-icon {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.rub-label { flex: 1; }

/* ===== BANNIÈRE PUBLICITAIRE MODERNE ===== */
.ad-banner-section {
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.ad-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(212,175,55,0.12) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0,150,69,0.10) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(206,17,38,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ad-banner-card {
  position: relative;
  background: var(--c-surface-strong);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 36px 40px;
  overflow: hidden;
  transition: transform .4s, box-shadow .4s;
}
.ad-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.18) inset;
}
/* Badge */
.ad-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(206,17,38,0.15);
  border: 1px solid rgba(206,17,38,0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ad-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 10px var(--c-red);
  animation: pulse 1.4s infinite;
}
/* Titre */
.ad-banner-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--c-text);
}
.ad-icon { font-size: 1.1em; }
.ad-highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ad-banner-text {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 640px;
}
.ad-banner-text strong { color: var(--c-text); }
/* Corps principal */
.ad-banner-body {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}
.ad-banner-left { flex: 1 1 320px; }
/* Stats */
.ad-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.ad-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: all .3s;
}
.ad-stat:hover {
  background: var(--c-surface-strong);
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.ad-stat-value {
  font-size: 28px;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.ad-stat-plus {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-gold);
  margin-left: 2px;
}
.ad-stat-label {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 6px;
  text-align: center;
  letter-spacing: 0.3px;
}
/* CTA */
.ad-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ad-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  border: none;
}
.ad-btn-primary {
  background: var(--grad-gold);
  color: #0a0e17;
  box-shadow: 0 6px 24px rgba(212,175,55,0.35);
}
.ad-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212,175,55,0.5);
}
.ad-btn-ghost {
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  backdrop-filter: blur(8px);
}
.ad-btn-ghost:hover {
  background: var(--c-surface-strong);
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-3px);
}
/* Shine */
.ad-shine {
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  animation: adShine 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes adShine {
  0%,100% { left: -75%; }
  50% { left: 125%; }
}

/* Responsive bannière */
@media (max-width: 768px) {
  .ad-banner-section { padding: 28px 0; }
  .ad-banner-card { padding: 24px 18px; border-radius: 18px; }
  .ad-banner-body { flex-direction: column; gap: 20px; margin: 20px 0 18px; }
  .ad-stats { gap: 10px; width: 100%; }
  .ad-stat { flex: 1 1 calc(33% - 10px); min-width: 80px; padding: 12px 10px; }
  .ad-stat-value { font-size: 22px; }
  .ad-stat-label { font-size: 10px; }
  .ad-actions { flex-direction: column; }
  .ad-btn { justify-content: center; }
}
@media (max-width: 480px) {
  .ad-badge { font-size: 10px; padding: 5px 12px; }
  .ad-banner-title { font-size: 18px; }
  .ad-banner-text { font-size: 13px; }
  .ad-stat { flex: 1 1 100%; }
}

/* ===== LECTEUR VIDÉO LIVE (dans le panneau latéral) ===== */
.live-player-wrapper {
  margin-top: 4px;
  animation: fadeUp .6s ease .8s both;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 12px var(--c-red);
  animation: pulse 1.2s infinite;
  flex-shrink: 0;
}
.live-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: 0.3px;
}
.live-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--c-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.live-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.live-player-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.15);
  transition: box-shadow .4s;
}
.live-player-container:hover::after {
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.35), 0 0 30px rgba(212,175,55,0.12);
}
.live-hint {
  margin-top: 8px;
  font-size: 11px;
  color: var(--c-text-muted);
  text-align: center;
}

/* ===== RUB CARDS (featured-side) ===== */
.rub-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rub-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 12px; border-radius: 12px;
  background: var(--c-surface-strong); border: 1px solid var(--c-border);
  color: var(--c-text); font-weight: 700; font-size: 13.5px;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  animation: fadeUp .6s ease both;
  animation-delay: var(--delay, 0s);
}
.rub-card:hover {
  transform: translateY(-4px);
  border-color: var(--c, var(--c-gold));
  box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 1px var(--c, var(--c-gold)) inset;
  background: color-mix(in srgb, var(--c, #d4af37) 12%, var(--c-surface-strong));
}
.rub-card-emoji { font-size: 22px; line-height: 1; }
.rub-card-label { flex: 1; }

/* ===== ARTICLE PAGE ===== */
.article-page { max-width: 820px; margin: 0 auto; }
.article-page h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 900; line-height: 1.15; margin: 16px 0 12px; }
.article-page .meta-row { display: flex; align-items: center; gap: 12px; color: var(--c-text-muted); font-size: 13px; margin-bottom: 24px; flex-wrap: wrap; }
.article-page .cover { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); object-fit: cover; margin-bottom: 28px; }
.article-page .content { font-size: 17px; line-height: 1.8; }
.article-page .content p { margin-bottom: 18px; }
.article-page .content h2, .article-page .content h3 { margin: 28px 0 14px; font-weight: 800; }

/* ===== FOOTER ===== */
footer.site-footer {
  margin-top: 80px; padding: 56px 0 24px; border-top: 1px solid var(--c-border);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(20px);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--c-text-muted); margin-top: 12px; font-size: 14px; }
.footer-col h5 { font-size: 14px; font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: var(--c-text-muted); padding: 5px 0; font-size: 14px; }
.footer-col a:hover { color: var(--c-gold); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--c-border); color: var(--c-text-muted); font-size: 13px; }
.flag-bar { height: 4px; background: var(--grad-guinee); border-radius: 4px; margin-bottom: 24px; }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,14,23,0.96);
  backdrop-filter: blur(20px); display: none; align-items: flex-start; justify-content: center; padding-top: 12vh;
}
.search-overlay.active { display: flex; animation: fadeIn .3s; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.search-overlay input {
  width: min(680px, 92%); padding: 18px 22px; font-size: 20px; border-radius: 16px;
  background: var(--c-surface-strong); border: 1px solid var(--c-border); color: var(--c-text);
}
.search-overlay input:focus { outline: none; border-color: var(--c-gold); }
.search-overlay .search-close { position: absolute; top: 20px; right: 20px; font-size: 28px; cursor: pointer; color: var(--c-text); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; }
.search-overlay .search-close:hover { background: var(--c-red); color: #fff; }
.search-results { width: min(680px, 92%); margin-top: 16px; max-height: 60vh; overflow-y: auto; }
.search-results a { display: block; padding: 14px; border-radius: 12px; background: var(--c-surface); margin-bottom: 8px; }
.search-results a:hover { background: var(--c-surface-strong); }
.search-results h4 { font-size: 15px; }
.search-results p { font-size: 12px; color: var(--c-text-muted); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(360px, 85vw); height: 100vh; z-index: 150;
  background: rgba(10,14,23,0.98); backdrop-filter: blur(24px);
  border-left: 1px solid var(--c-border); padding: 80px 24px 24px;
  transition: right .35s cubic-bezier(.2,.8,.2,1); overflow-y: auto;
}
.mobile-nav.active { right: 0; }
.mobile-nav a { display: block; padding: 14px; border-radius: 12px; font-size: 16px; font-weight: 600; color: var(--c-text); }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--c-surface-strong); color: var(--c-gold); }
.backdrop { position: fixed; inset: 0; z-index: 140; background: rgba(0,0,0,0.6); display: none; }
.backdrop.active { display: block; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  /* Sur tablette : panneau large, max du lecteur à 640px centré */
  .featured-side { max-width: 720px; margin: 0 auto; }
  .live-player-wrapper { max-width: 640px; margin: 4px auto 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 54px; }
  nav.main-nav, .header-actions .search-btn span { display: none; }
  .hamburger { display: flex; width: 36px; height: 36px; }
  .section { padding: 32px 0; }
  .hero { height: 60vh; min-height: 380px; }
  .hero h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero p.subtitle { font-size: 15px; margin-bottom: 22px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 16px; }
  .hero-cta .btn { padding: 12px 22px; font-size: 14px; }
  .topbar { padding: 4px 12px; font-size: 11px; min-height: 28px; }
  .topbar-left { gap: 6px; flex-wrap: wrap; }
  .topbar-phone span { font-size: 11px; }
  .topbar .stickers { display: none; }
  .topbar .social-icon { width: 22px; height: 22px; }
  .topbar .social { gap: 4px; }
  .container { padding: 0 12px; }
  .section-title { font-size: 20px; }
  .article-grid { grid-template-columns: 1fr; gap: 18px; }
  .video-grid { grid-template-columns: 1fr; gap: 18px; }
  .featured-main { min-height: 280px; }
  .featured-main h2 { font-size: 18px; }
  .featured-main .meta { padding: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .breaking { padding: 8px 12px; font-size: 12px; }
  .breaking .label { padding: 3px 8px; font-size: 10px; }
  .section-head { margin-bottom: 20px; }
  .rub-cards { grid-template-columns: 1fr; }
  .sidebar { gap: 18px; }
  .article-page h1 { font-size: clamp(22px, 6vw, 30px); }
  .article-page .content { font-size: 16px; }
  .article-page .cover { border-radius: 14px; }
  .search-overlay { padding-top: 10vh; }
  .search-overlay input { font-size: 18px; padding: 16px 18px; }
  .mobile-nav { width: min(320px, 85vw); padding: 70px 20px 24px; }
  .mobile-nav a { font-size: 15px; padding: 12px; }
  .share-bar { padding: 14px; gap: 8px; }
  .share-btn { width: 40px; height: 40px; font-size: 17px; }
  .share-modal { padding: 12px; }
  .share-modal-head { padding: 18px 16px 12px; }
  .share-modal-head h3 { font-size: 17px; }
  .share-preview { padding: 14px 16px; gap: 10px; }
  .share-preview-img { width: 72px; height: 54px; }
  .share-modal-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 16px; }
  .share-modal-grid .share-btn { font-size: 18px; border-radius: 12px; }
  .share-modal-grid .share-btn .sm-label { font-size: 9px; bottom: -18px; }
  .share-modal-link { padding: 0 16px 18px; flex-direction: column; }
  .share-modal-link input { font-size: 12px; }
  .ad-banner { margin: 16px 0; }
  .popular-list .pop-thumb { width: 52px; height: 40px; }
}
@media (max-width: 480px) {
  .logo { font-size: 19px; }
  .logo-img img { height: 30px; }
  .hero h1 { font-size: 30px; letter-spacing: -1px; }
  .hero p.subtitle { font-size: 14px; }
  .hero-badge { font-size: 10px; }
  .section { padding: 24px 0; }
  .section-title { font-size: 18px; }
  .container { padding: 0 10px; }
  .article-card .body { padding: 12px 2px; }
  .article-card h3 { font-size: 15px; }
  .article-card .excerpt { font-size: 12.5px; }
  .featured-main h2 { font-size: 16px; }
  .featured-main .meta { padding: 14px; }
  .btn { padding: 12px 18px; font-size: 13px; }
  .btn-primary { padding: 12px 20px; }
  .search-overlay input { font-size: 16px; }
  .topbar-phone span { font-size: 10px; }
  .topbar-sep { display: none; }
  .share-btn { width: 36px; height: 36px; font-size: 15px; }
  .share-bar .share-label { font-size: 12px; width: 100%; margin-bottom: 4px; }
  .share-modal-grid { grid-template-columns: repeat(3, 1fr); }
  .share-modal-grid .share-btn .sm-label { display: none; }
  .article-page h1 { font-size: 22px; }
  .article-page .meta-row { font-size: 12px; gap: 8px; }
  .article-page .content { font-size: 15px; line-height: 1.75; }
  .footer-brand p { font-size: 13px; }
}

/* ============================================
   SYSTÈME DE PARTAGE SOCIAL
   ============================================ */

/* Barre de partage dans article */
.share-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 18px 20px; border-radius: var(--radius);
  background: var(--c-surface); border: 1px solid var(--c-border);
  backdrop-filter: blur(12px); margin: 32px 0;
}
.share-bar .share-label {
  font-weight: 800; font-size: 14px; color: var(--c-text);
  display: flex; align-items: center; gap: 8px; margin-right: 6px;
}
.share-bar .share-label::before { content:''; width:4px; height:18px; background: var(--grad-guinee); border-radius: 4px; }
.share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: none; cursor: pointer;
  font-size: 19px; color: #fff; transition: all .3s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
}
.share-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0; transition: opacity .3s;
}
.share-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.share-btn:hover::before { opacity: 1; }
.share-btn:active { transform: translateY(-1px) scale(1.02); }
.s-facebook { background: #1877f2; }
.s-twitter { background: #14171a; }
.s-whatsapp { background: #25d366; }
.s-telegram { background: #2aabee; }
.s-linkedin { background: #0a66c2; }
.s-reddit { background: #ff4500; }
.s-email { background: #6b7280; }
.s-copy { background: var(--grad-gold); color: #0a0e17; }
.s-native { background: var(--c-surface-strong); border: 1px solid var(--c-border); color: var(--c-text); }

/* Modal de partage */
.share-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(10,14,23,0.85); backdrop-filter: blur(16px);
  animation: fadeIn .3s;
}
.share-modal.active { display: flex; }
.share-modal-box {
  width: min(440px, 100%); border-radius: 24px; overflow: hidden;
  background: var(--c-bg2); border: 1px solid var(--c-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  animation: fadeUp .4s cubic-bezier(.2,.8,.2,1);
}
.share-modal-head {
  padding: 22px 24px 16px; text-align: center;
  border-bottom: 1px solid var(--c-border);
  background: linear-gradient(135deg, rgba(212,175,55,0.12), transparent);
}
.share-modal-head h3 { font-size: 20px; font-weight: 800; }
.share-modal-head p { font-size: 13px; color: var(--c-text-muted); margin-top: 4px; }
.share-preview {
  display: flex; gap: 14px; padding: 18px 24px;
  border-bottom: 1px solid var(--c-border);
}
.share-preview-img {
  width: 96px; height: 72px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
  background: linear-gradient(135deg,#1a2332,#0f1620); display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.share-preview-text { flex: 1; min-width: 0; }
.share-preview-text .sp-cat {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 2px 8px; border-radius: 5px; display: inline-block; margin-bottom: 6px; color: #0a0e17;
}
.share-preview-text .sp-title {
  font-size: 14px; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.share-preview-text .sp-excerpt {
  font-size: 12px; color: var(--c-text-muted); margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.share-modal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 20px 24px;
}
.share-modal-grid .share-btn { width: 100%; aspect-ratio: 1; border-radius: 16px; font-size: 22px; }
.share-modal-grid .share-btn .sm-label {
  position: absolute; bottom: -22px; left: 0; right: 0;
  font-size: 11px; font-weight: 600; color: var(--c-text-muted); text-align: center;
}
.share-modal-link {
  display: flex; gap: 8px; padding: 0 24px 22px;
}
.share-modal-link input {
  flex: 1; padding: 12px 14px; border-radius: 12px; font-size: 13px;
  background: var(--c-surface-strong); border: 1px solid var(--c-border); color: var(--c-text);
  outline: none;
}
.share-modal-link input:focus { border-color: var(--c-gold); }
.share-modal-link button {
  padding: 12px 18px; border-radius: 12px; font-weight: 700; font-size: 13px; cursor: pointer; border: none;
  background: var(--grad-gold); color: #0a0e17; transition: transform .2s;
}
.share-modal-link button:hover { transform: scale(1.05); }
.share-modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--c-surface-strong); border: 1px solid var(--c-border);
  color: var(--c-text); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.share-modal-close:hover { background: var(--c-red); color: #fff; }

/* Toast copie */
.share-toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120px);
  z-index: 400; padding: 14px 24px; border-radius: 14px; font-weight: 700; font-size: 14px;
  background: var(--c-green); color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display: flex; align-items: center; gap: 8px;
}
.share-toast.show { transform: translateX(-50%) translateY(0); }

/* Bouton de partage flottant mobile */
.share-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 120;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grad-gold); color: #0a0e17; font-size: 24px;
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
  display: none; align-items: center; justify-content: center;
  transition: transform .3s;
  animation: pulse 2s infinite;
}
.share-float:hover { transform: scale(1.12) rotate(15deg); }
@media (max-width: 768px) { .share-float { display: flex; } }

/* ===== PETITES ANIMATIONS SUPPLÉMENTAIRES ===== */
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.reveal.in .article-card, .reveal.in .video-card { animation: fadeUp .6s ease both; }
.featured-main { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.featured-main:hover { transform: scale(1.01); }
.featured-main:hover img { transform: scale(1.04); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.rub-card { position: relative; overflow: hidden; }
.rub-card::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.rub-card:hover::after { opacity: 1; animation: floatY 3s ease-in-out infinite; }

/* Scroll indicator hero */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: var(--c-text-muted); font-size: 12px; text-align: center; animation: bounce 2s infinite;
}
.hero-scroll svg { animation: none; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
