/* ══════════════════════════════════════
   INDEX — page d'accueil LMP Radio
══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1140/475;
  max-height: 75vh;
  overflow: hidden;
  background: #050008;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-overlay { display: none; }
.hero-content {
  position: absolute;
  bottom: 60px; left: 60px;
  max-width: 560px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(204,0,0,.85); backdrop-filter: blur(8px);
  color: #fff; font-size: .6rem; font-weight: 900; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 30px;
  margin-bottom: 18px; border: 1px solid rgba(255,80,80,.3);
  box-shadow: 0 0 20px rgba(204,0,0,.4);
}
.hero-tag .dot-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; animation: pulse 1.4s infinite;
}
.hero-title {
  font-size: 3.6rem; font-weight: 900; line-height: 1.05;
  letter-spacing: -1px;
  text-shadow: 0 4px 30px rgba(0,0,0,.8);
  background: linear-gradient(135deg, #fff 40%, rgba(255,120,120,.8));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  margin-top: 12px; line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,.9);
}
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 40px;
  background: linear-gradient(135deg, #cc0000, #ff3300);
  color: #fff; font-size: .88rem; font-weight: 800;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 24px rgba(204,0,0,.5);
  transition: all .25s; letter-spacing: .3px;
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(204,0,0,.7); }
.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: 40px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  color: #fff; font-size: .88rem; font-weight: 700;
  border: 1px solid rgba(255,255,255,.2); cursor: pointer; text-decoration: none;
  transition: all .25s;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.hero-dots { position: absolute; bottom: 24px; right: 32px; display: flex; gap: 8px; }
.hero-dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.2); cursor: pointer; transition: all .3s;
}
.hero-dot.active { background: var(--red); width: 48px; }

/* ── BARRE DE STATS ── */
.stats-bar {
  background: rgba(10,0,15,.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-bar-inner {
  display: flex; align-items: stretch;
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.stat-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 28px; flex: 1;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(204,0,0,.05); }
.stat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.stat-icon.red   { background: rgba(204,0,0,.15); color: var(--red-l); }
.stat-icon.green { background: rgba(0,255,136,.1); color: var(--g); }
.stat-icon.gold  { background: rgba(255,215,0,.1); color: #ffd700; }
.stat-icon.blue  { background: rgba(88,101,242,.15); color: #7289da; }
.stat-label { font-size: .6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3); }
.stat-value { font-size: 1.05rem; font-weight: 800; color: var(--t1); margin-top: 1px; }
@media (max-width: 860px) { .stats-bar-inner { flex-wrap: wrap; } .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); } }
@media (max-width: 480px) { .stat-item { min-width: 100%; } }

/* ── PLAYER ── */
#player-section { padding: 48px 0; }
.player-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: stretch; }

.player-card {
  position: relative; overflow: hidden; isolation: isolate;
  border: 1px solid rgba(255,255,255,.08); border-radius: 28px;
  padding: 32px; display: flex; align-items: center; gap: 28px;
  box-shadow: 0 20px 80px rgba(0,0,0,.7);
  background: rgba(10,0,15,.6); backdrop-filter: blur(20px);
}
#player-bg {
  position: absolute; inset: -60px;
  background: linear-gradient(135deg, #120005, #07070d);
  filter: blur(80px) brightness(.45) saturate(2);
  z-index: 0; transition: background 1.5s ease;
}
.player-card > *:not(#player-bg) { position: relative; z-index: 1; }

.player-cover-wrap { position: relative; flex-shrink: 0; }
#pl-cover {
  width: 180px; height: 180px; border-radius: 18px; object-fit: cover;
  display: none; box-shadow: 0 16px 48px rgba(0,0,0,.8);
}
#pl-cover-ph {
  width: 180px; height: 180px; border-radius: 18px;
  background: linear-gradient(135deg, #1a0000, #6b0000, #cc0000);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: rgba(255,255,255,.08);
  box-shadow: 0 16px 48px rgba(180,0,0,.4);
}
.live-badge {
  position: absolute; top: -10px; right: -10px;
  background: linear-gradient(135deg, #cc0000, #ff2200);
  color: #fff; font-size: .5rem; font-weight: 900; letter-spacing: 2.5px;
  padding: 5px 10px; border-radius: 20px;
  animation: pulse 1.5s infinite; display: none;
  box-shadow: 0 2px 16px rgba(255,0,0,.6);
}
.live-badge.show { display: block; }

.player-info { flex: 1; min-width: 0; }
.player-mode {
  font-size: .55rem; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.player-mode::before { content: ''; width: 20px; height: 2px; background: currentColor; border-radius: 1px; }
.player-mode.dj-on { color: var(--g); }
#pl-dj { font-size: .9rem; color: var(--t2); margin-bottom: 4px; display: none; }
#pl-dj.show { display: block; }
#pl-title {
  font-size: 1.7rem; font-weight: 900; line-height: 1.15; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#pl-artist {
  font-size: .95rem; color: var(--t2); margin-bottom: 24px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.player-controls { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
#pl-play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #8b0000, #cc0000, #ff2200);
  border: none; color: #fff; font-size: 20px; cursor: pointer;
  transition: all .3s; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(180,0,0,.6); flex-shrink: 0;
}
#pl-play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(204,0,0,.9); }
#pl-play-btn.playing { animation: glow 2s ease-in-out infinite; }
@keyframes glow { 0%,100% { box-shadow: 0 4px 24px rgba(180,0,0,.6); } 50% { box-shadow: 0 4px 48px rgba(220,0,0,1); } }

.vol-wrap { display: flex; align-items: center; gap: 8px; flex: 1; }
.vol-wrap i { color: var(--t3); font-size: .75rem; }
.stream-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
  font-size: .7rem; font-weight: 700; color: var(--t2);
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.stream-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

.vote-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.vote-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 16px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  cursor: pointer; transition: all .25s; font-family: inherit; color: #fff;
  flex: 1;
}
.vote-btn span.vicon  { font-size: 1.2rem; line-height: 1; }
.vote-btn span.vlabel { font-size: .52rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--t3); }
.vote-btn span.vcount { font-size: .7rem; font-weight: 700; }
.vote-btn.like-btn:hover,     .vote-btn.like-btn.voted     { background: rgba(0,200,80,.12); border-color: rgba(0,200,80,.35); }
.vote-btn.dislike-btn:hover,  .vote-btn.dislike-btn.voted  { background: rgba(255,60,60,.12); border-color: rgba(255,60,60,.35); }
.vote-btn.superlike-btn:hover,.vote-btn.superlike-btn.voted{ background: rgba(255,200,0,.1); border-color: rgba(255,200,0,.35); }

.player-meta { display: flex; align-items: center; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
#pl-listeners { font-size: .75rem; color: var(--t3); display: flex; align-items: center; gap: 5px; }
#pl-listeners i { color: var(--accent); }
#pl-score { font-size: .75rem; color: var(--t3); display: flex; align-items: center; gap: 5px; }
#pl-score i { color: #ffd700; }

/* Derniers titres */
.recent-card {
  background: rgba(8,0,12,.5); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.07); border-radius: 28px;
  padding: 28px; display: flex; flex-direction: column;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.recent-card .section-title { margin-bottom: 14px; font-size: .82rem; }
.recent-list { display: flex; flex-direction: column; gap: 6px; flex: 1; overflow: hidden; }
.recent-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid transparent;
  transition: all .2s; cursor: default;
}
.recent-item:hover { background: rgba(180,0,0,.07); border-color: rgba(204,0,0,.15); }
.ri-cover { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: linear-gradient(135deg,#1a0000,#8b0000); }
.ri-info { flex: 1; min-width: 0; }
.ri-title { font-size: .78rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ri-artist { font-size: .66rem; color: var(--t2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.ri-time { font-size: .6rem; color: var(--t3); flex-shrink: 0; }

@media (max-width: 960px) { .player-wrap { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .hero { max-height: 50vh; }
  .hero-title { font-size: 2.2rem; }
  .hero-content { bottom: 36px; left: 24px; }
  .hero-sub { font-size: .85rem; }
  .player-card { flex-direction: column; text-align: center; padding: 24px; }
  #pl-cover, #pl-cover-ph { width: 140px; height: 140px; }
  #pl-title { font-size: 1.3rem; }
  .player-controls, .vote-bar { justify-content: center; flex-wrap: wrap; }
  .stream-btn { display: none; }
}
@media (max-width: 400px) {
  .hero { max-height: 40vh; }
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
}

/* ── SECTION TITRE AMÉLIORÉ ── */
.section-header { margin-bottom: 28px; }
.section-header .section-title { margin-bottom: 0; }
.section-header p { font-size: .82rem; color: var(--t3); margin-top: 6px; }

/* ── COUPS DE CŒUR ── */
.coeurs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.coeur-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06); border-radius: 16px;
  transition: all .22s; position: relative; overflow: hidden;
}
.coeur-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: transparent; border-radius: 3px 0 0 3px; transition: background .2s;
}
.coeur-item:hover { background: rgba(180,0,0,.07); border-color: rgba(204,0,0,.2); transform: translateX(4px); }
.coeur-item:hover::before { background: var(--red); }
.coeur-item.top1 { border-color: rgba(255,215,0,.2); background: rgba(255,215,0,.04); }
.coeur-item.top1::before { background: #ffd700; }
.coeur-item.top2 { border-color: rgba(192,192,192,.15); }
.coeur-item.top2::before { background: #c0c0c0; }
.coeur-item.top3 { border-color: rgba(205,127,50,.2); }
.coeur-item.top3::before { background: #cd7f32; }
.coeur-cover { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; flex-shrink: 0; background: linear-gradient(135deg,#1a0000,#8b0000); }
.coeur-rank { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.coeur-info { flex: 1; min-width: 0; }
.coeur-title { font-size: .8rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.coeur-artist { font-size: .68rem; color: var(--t2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 2px 0 6px; }
.coeur-score {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .68rem; font-weight: 800; color: var(--accent);
  background: rgba(230,50,50,.1); border: 1px solid rgba(230,50,50,.2);
  border-radius: 20px; padding: 2px 8px;
}
.coeur-score i { font-size: .6rem; }

/* ── DÉDICACES + PARTENAIRES ── */
.dedi-form { display: flex; flex-direction: column; gap: 10px; }
.dedi-form input, .dedi-form textarea, .dedi-form select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 13px 16px; color: #fff;
  font-size: .85rem; font-family: inherit; outline: none;
  transition: all .2s; width: 100%;
}
.dedi-form input:focus, .dedi-form textarea:focus { border-color: rgba(204,0,0,.4); background: rgba(204,0,0,.04); }
.dedi-form textarea { resize: vertical; min-height: 80px; }
.dedi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .dedi-row { grid-template-columns: 1fr; } }
.dedi-btn {
  padding: 14px; background: linear-gradient(135deg, #8b0000, #cc0000);
  border: none; border-radius: 12px; color: #fff;
  font-size: .85rem; font-weight: 800; cursor: pointer;
  transition: all .25s; letter-spacing: .5px; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(180,0,0,.3);
}
.dedi-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(180,0,0,.5); }
.dedi-msg { font-size: .78rem; padding: 10px 14px; border-radius: 10px; text-align: center; display: none; }
.dedi-msg.ok  { background: rgba(0,255,136,.08); color: var(--g); border: 1px solid rgba(0,255,136,.2); display: block; }
.dedi-msg.err { background: rgba(255,50,50,.08); color: #ff6666; border: 1px solid rgba(255,50,50,.2); display: block; }

.partner-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px; border-radius: 16px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  text-decoration: none; transition: all .2s; text-align: center; width: 100%;
}
.partner-item:hover { border-color: rgba(204,0,0,.3); background: rgba(180,0,0,.05); transform: translateY(-2px); }
.partner-logo-wrap { background: #fff; border-radius: 12px; padding: 16px 28px; }
.partner-logo-wrap img { max-height: 60px; max-width: 180px; object-fit: contain; display: block; }
.partner-item span { font-size: .78rem; color: var(--t3); }

/* ── DISCORD ── */
.discord-card { background: rgba(8,10,24,.6); border: 1px solid rgba(88,101,242,.15); border-radius: 20px; overflow: hidden; backdrop-filter: blur(16px); }
.dc-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid rgba(88,101,242,.1); background: rgba(88,101,242,.05); }
.dc-header-left { display: flex; align-items: center; gap: 14px; }
.dc-header-right { display: flex; gap: 24px; align-items: center; }
.dc-stat { text-align: center; }
.dc-stat-val { font-weight: 800; font-size: 1.1rem; color: #fff; }
.dc-stat-lbl { font-size: .58rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; }
.dc-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dc-dot.online { background: #57f287; box-shadow: 0 0 8px rgba(87,242,135,.6); }
.dc-members-list { height: 260px; overflow-y: auto; padding: 10px 12px; display: flex; flex-direction: column; gap: 4px; }
.dc-member { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; transition: background .15s; }
.dc-member:hover { background: rgba(255,255,255,.04); }
.dc-avatar { position: relative; flex-shrink: 0; }
.dc-avatar img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.dc-avatar-ph { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#5865f2,#7289da); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; color: #fff; }
.dc-status { position: absolute; bottom: 0; right: 0; width: 9px; height: 9px; border-radius: 50%; border: 2px solid #0d0d18; }
.dc-status.online  { background: #57f287; }
.dc-status.idle    { background: #faa61a; }
.dc-status.dnd     { background: #ed4245; }
.dc-status.offline { background: #747f8d; }
.dc-member-info { flex: 1; min-width: 0; }
.dc-member-name { font-size: .8rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-member-role { font-size: .62rem; color: var(--t3); }
.dc-footer { padding: 14px 16px; border-top: 1px solid rgba(88,101,242,.1); }
.discord-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: #5865f2; border: none; border-radius: 12px; color: #fff; font-size: .83rem; font-weight: 800; cursor: pointer; transition: all .2s; text-decoration: none; width: 100%; justify-content: center; }
.discord-btn:hover { background: #4752c4; transform: translateY(-1px); }

/* ── FACEBOOK ── */
.fb-card { background: rgba(24,119,242,.04); border: 1px solid rgba(24,119,242,.15); border-radius: 20px; overflow: hidden; backdrop-filter: blur(16px); height: 100%; display: flex; flex-direction: column; }

/* ── CHAT ── */
.chat-wrap {
  background: rgba(8,0,12,.5); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 200px;
  backdrop-filter: blur(16px);
}
@media (max-width: 700px) { .chat-wrap { grid-template-columns: 1fr; } }
.chat-main { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.07); }
.chat-topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.02); flex-wrap: wrap; gap: 6px; }
.chat-topbar-left { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 800; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--g); box-shadow: 0 0 8px rgba(0,255,136,.5); animation: pulse 2s infinite; }
.chat-who { font-size: .72rem; color: var(--t2); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.chat-who span { color: #fff; font-weight: 700; }
.chat-who button { background: none; border: none; color: var(--t3); cursor: pointer; font-size: .7rem; padding: 0; transition: color .2s; }
.chat-who button:hover { color: var(--accent); }
.chat-box { height: 300px; overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 700px) { .chat-box { height: 240px; } }
.chat-msg { display: flex; gap: 9px; align-items: flex-start; animation: msgIn .22s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.c-av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,#5a0000,#cc0000); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.c-av.me-av { background: linear-gradient(135deg,#8b6000,#cc9900); }
.c-body { flex: 1; min-width: 0; }
.c-head { display: flex; align-items: baseline; gap: 7px; margin-bottom: 3px; }
.c-nick { font-size: .74rem; font-weight: 800; color: var(--accent); }
.c-nick.me { color: #ffcc00; }
.c-time { font-size: .57rem; color: var(--t3); }
.c-text { font-size: .82rem; color: rgba(255,255,255,.8); line-height: 1.5; word-break: break-word; background: rgba(255,255,255,.05); border-radius: 0 10px 10px 10px; padding: 7px 12px; display: inline-block; max-width: 100%; }
.chat-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 10px; color: var(--t3); font-size: .82rem; }
.chat-empty i { font-size: 2rem; opacity: .15; }
.chat-input-zone { border-top: 1px solid rgba(255,255,255,.07); padding: 12px 14px; }
.chat-input-row { display: flex; gap: 8px; }
.chat-input-row input { flex: 1; min-width: 0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 10px 14px; color: #fff; font-size: .84rem; font-family: inherit; outline: none; transition: border-color .2s; }
.chat-input-row input:focus { border-color: rgba(204,0,0,.4); }
.chat-input-row button { padding: 10px 14px; background: var(--red); border: none; border-radius: 10px; color: #fff; font-size: .82rem; font-weight: 800; cursor: pointer; transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.chat-input-row button:hover { background: var(--red-l); }
@media (max-width: 400px) { .chat-input-row { flex-direction: column; } .chat-input-row button { width: 100%; } }
.chat-login-bar { border-top: 1px solid rgba(255,255,255,.07); padding: 12px 14px; background: rgba(0,0,0,.15); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.chat-login-bar span { font-size: .8rem; color: var(--t2); white-space: nowrap; }
.chat-login-bar input { flex: 1; min-width: 120px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 9px 14px; color: #fff; font-size: .84rem; font-family: inherit; outline: none; transition: border-color .2s; }
.chat-login-bar input:focus { border-color: rgba(204,0,0,.4); }
.chat-login-bar button { padding: 9px 14px; background: linear-gradient(135deg,#8b0000,#cc0000); border: none; border-radius: 10px; color: #fff; font-size: .82rem; font-weight: 800; cursor: pointer; white-space: nowrap; }
@media (max-width: 500px) { .chat-login-bar { flex-direction: column; align-items: stretch; } .chat-login-bar span { display: none; } .chat-login-bar input, .chat-login-bar button { width: 100%; } }
.chat-side { display: flex; flex-direction: column; }
@media (max-width: 700px) { .chat-side { display: none; } }
.chat-side-title { padding: 14px; font-size: .58rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: var(--t3); border-bottom: 1px solid rgba(255,255,255,.07); }
.chat-side-list { padding: 8px; display: flex; flex-direction: column; gap: 3px; overflow-y: auto; }
.cu-item { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 8px; }
.cu-av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,#5a0000,#cc0000); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 900; color: #fff; flex-shrink: 0; position: relative; }
.cu-av.me-av { background: linear-gradient(135deg,#8b6000,#cc9900); }
.cu-dot { position: absolute; bottom: -1px; right: -1px; width: 7px; height: 7px; border-radius: 50%; background: var(--g); border: 2px solid #0d0d18; }
.cu-name { font-size: .74rem; font-weight: 600; color: var(--t2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cu-name.me { color: #ffcc00; }

/* ── ACTUS ── */
.actus-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 1100px) { .actus-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 700px)  { .actus-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px)  { .actus-grid { grid-template-columns: 1fr; } }
.actu-card { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all .25s; display: flex; flex-direction: column; }
.actu-card:hover { border-color: rgba(204,0,0,.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.actu-thumb { width: 100%; height: 150px; object-fit: cover; display: block; flex-shrink: 0; }
.actu-thumb-ph { width: 100%; height: 150px; background: linear-gradient(135deg,#1a0000,#8b0000,#cc0000); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.actu-thumb-ph i { font-size: 2rem; color: rgba(255,255,255,.1); }
.actu-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.actu-tag { display: inline-block; font-size: .55rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; background: var(--red); padding: 3px 8px; border-radius: 4px; align-self: flex-start; }
.actu-title { font-size: .85rem; font-weight: 700; line-height: 1.4; flex: 1; }
.actu-date { font-size: .68rem; color: var(--t3); margin-top: auto; display: flex; align-items: center; gap: 5px; }
.actu-placeholder { display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; padding: 48px; color: var(--t3); font-size: .85rem; text-align: center; grid-column: 1/-1; }
.actu-placeholder i { font-size: 2.5rem; margin-bottom: 8px; opacity: .2; }

/* ── LIVRE D'OR ── */
.lor-list { display: flex; flex-direction: column; gap: 10px; max-height: 380px; overflow-y: auto; margin-bottom: 0; }
.lor-entry { padding: 16px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05); border-radius: 14px; transition: border-color .2s; }
.lor-entry:hover { border-color: var(--border); }
.lor-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.lor-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#8b0000,#cc0000); display: flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.lor-nick { font-size: .83rem; font-weight: 700; }
.lor-date { font-size: .65rem; color: var(--t3); margin-left: auto; }
.lor-msg { font-size: .8rem; color: var(--t2); line-height: 1.6; font-style: italic; }
.lor-form { display: flex; flex-direction: column; gap: 10px; }
.lor-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .lor-form-row { grid-template-columns: 1fr; } }
.lor-form input, .lor-form textarea { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 14px; color: #fff; font-size: .82rem; font-family: inherit; outline: none; transition: border-color .2s; width: 100%; }
.lor-form input:focus, .lor-form textarea:focus { border-color: rgba(204,0,0,.4); }
.lor-form textarea { min-height: 80px; resize: vertical; }
.lor-btn { padding: 13px; background: linear-gradient(135deg,#1a0000,#8b0000); border: 1px solid rgba(204,0,0,.25); border-radius: 12px; color: #fff; font-size: .82rem; font-weight: 800; cursor: pointer; transition: all .2s; }
.lor-btn:hover { background: linear-gradient(135deg,#8b0000,#cc0000); border-color: rgba(204,0,0,.5); transform: translateY(-1px); }
