/* ==================================================
   RADIO ONE - Style clair, animé, bleu / rouge / blanc
   ================================================== */

:root {
  --blue: #002b6b;
  --red: #e51937;
  --white: #ffffff;
  --gray: #f4f6fb;
  --text: #222;
  --radius: 12px;
  --shadow: 0 3px 10px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

/* Global */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--gray);
  color: var(--text);
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
/*.site-header {*/
/*  background: var(--blue);*/
/*  color: var(--white);*/
/*  box-shadow: var(--shadow);*/
/*  position: sticky;*/
/*  top: 0;*/
/*  z-index: 1000;*/
/*  animation: fadeIn 1s ease;*/
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 10px 20px;
}

/* Fix header color sur le blog */
header, .site-header, .navbar {
  background-color: var(--header-color, #ffffff) !important;
  color: #fff !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 55px; transition: transform 0.3s ease; }
.logo img:hover { transform: scale(1.08); }
.brand { font-size: 1.3rem; font-weight: 700; }
.main-nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav a:hover { color: var(--red); }

/* Hero / Player */
.hero {
  position: relative;
  background: url('/assets/images/bg.png') center/cover no-repeat;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 40px;
  text-align: center;
  overflow: hidden;
  animation: fadeInUp 1.2s ease;
}

/* Superposition dégradée pour lisibilité */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 43, 107, 0.8),
    rgba(229, 25, 55, 0.6)
  );
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}

/* Player */
.player-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 25px 20px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.4);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  }
}
.hero audio {
  width: 100%;
  border-radius: var(--radius);
  outline: none;
}
.hero-info {
  max-width: 500px;
}
.hero h2 {
  margin-top: 0;
  color: var(--white);
}
.hero p {
  color: #f0f0f0;
}

/* Buttons */
.listen-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(229,25,55,0.3);
  transition: var(--transition);
}
.listen-btn:hover {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 0 25px rgba(229,25,55,0.5);
  transform: translateY(-2px) scale(1.03);
}

/* ===============================
   🎧 HERO PLAYER (SYNCHRONISÉ)
   =============================== */

.hero-player {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.hero-play-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(229,25,55,0.4);
}
.hero-play-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(229,25,55,0.5);
}

.live-status {
  color: var(--white);
  font-weight: 600;
  background: var(--red);
  padding: 5px 10px;
  border-radius: 6px;
  animation: blinkLive 1.5s infinite;
}

@keyframes blinkLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}



/* ===============================
   🎙️ NOS ÉMISSIONS
   =============================== */

.shows-section {
  background: var(--gray);
  padding: 60px 20px;
  text-align: center;
}

.shows-section h3 {
  color: var(--blue);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.shows-intro {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-content: center;
}

.show-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 15px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}
.show-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.show-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.show-card h4 {
  color: var(--red);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.show-card p {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.4;
}

.show-card strong {
  color: var(--blue);
}

.schedule {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  border-radius: 8px;
  padding: 4px 10px;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .shows-grid {
    grid-template-columns: 1fr;
  }
  .show-card {
    text-align: center;
  }
}



/* Section titles */
h3 {
  color: var(--blue);
  border-left: 5px solid var(--red);
  padding-left: 10px;
  margin-bottom: 20px;
  position: relative;
  animation: fadeIn 1s ease;
}

/* Articles */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 10px;
  transition: var(--transition);
  position: relative;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
}
.card h4 a {
  text-decoration: none;
  color: var(--blue);
  transition: color 0.3s ease;
}
.card h4 a:hover {
  color: var(--red);
}
.card p {
  color: #555;
  font-size: 0.9rem;
}

/* Comments */
.comment-card {
  background: var(--white);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.comment-card::after {
  content: "💬";
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 2rem;
  opacity: 0.1;
}
.comment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.comment-card strong {
  color: var(--red);
}
.comment-card a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

/* CTA Section */
.cta {
  text-align: center;
  background: var(--white);
  padding: 50px 20px;
  border-radius: var(--radius);
  margin-top: 60px;
  box-shadow: var(--shadow);
  animation: fadeInUp 1.5s ease;
}
.cta h3 {
  margin-top: 0;
  font-size: 1.6rem;
}
.cta p {
  margin-bottom: 15px;
  color: #555;
}

/* Footer */
.site-footer {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 25px 10px;
  border-top: 5px solid var(--red);
  animation: fadeIn 1s ease;
}
.site-footer a {
  color: #ffb3b3;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  text-decoration: underline;
  color: var(--white);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 40px 10px;
  }
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}


/* ===============================
   PAGE CONTACT
   =============================== */

.contact-hero {
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
  padding: 80px 20px;
}
.contact-hero h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}
.contact-hero p {
  max-width: 600px;
  margin: auto;
  color: #f5f5f5;
}

.contact-form-section {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease;
}

.contact-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  outline: none;
}

.alert-success {
  background: #d9f8e6;
  color: #137a1e;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
}

/* Section info */
.contact-info {
  text-align: center;
  margin: 50px 0;
  animation: fadeInUp 1.2s ease;
}
.contact-info h3 {
  color: var(--blue);
}
.contact-info p a {
  text-decoration: none;
}

/* Bouton flottant publicité */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(229,25,55,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
}
.floating-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.05);
}

/* Responsive Contact */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 25px;
  }
  .floating-btn {
    bottom: 15px;
    right: 15px;
    font-size: 0.9rem;
  }
}

/* === Animation fade on scroll === */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   MODAL RADIO ONE STYLÉ (bleu / rouge / blanc)
   =============================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: modalFadeIn 0.4s ease forwards;
}

.modal-overlay.active {
  display: flex;
}

/* Boîte du modal */
.radioone-modal {
  background: linear-gradient(145deg, var(--blue) 60%, var(--red));
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  width: 90%;
  max-width: 420px;
  padding: 25px 25px 30px;
  position: relative;
  animation: modalZoomIn 0.45s ease forwards;
  overflow: hidden;
  transform-origin: center;
}

/* Lueur d’ambiance subtile */
.radioone-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.25), transparent 70%);
  pointer-events: none;
}

/* Entête du modal */
.modal-header {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

/* Logo */
.modal-header img {
  width: 70px;
  height: auto;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.4));
  transition: transform 0.3s ease;
}

/* Halo lumineux rouge/bleu */
.modal-header::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(229,25,55,0.6) 0%,
    rgba(0,43,107,0.5) 40%,
    transparent 80%
  );
  filter: blur(15px);
  animation: pulseHalo 3s ease-in-out infinite;
  z-index: 1;
}
@keyframes pulseHalo {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.modal-header img:hover {
  transform: scale(1.05);
}

.modal-header h3 {
  margin: 5px 0;
  font-size: 1.4rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.modal-header p {
  font-size: 0.9rem;
  color: #f1f1f1;
  margin: 0 auto 10px;
  max-width: 90%;
  position: relative;
  z-index: 2;
}

/* Formulaire */
.radioone-modal form label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}
.radioone-modal form input,
.radioone-modal form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-top: 5px;
  font-family: inherit;
  font-size: 1rem;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.radioone-modal form input:focus,
.radioone-modal form textarea:focus {
  outline: none;
  transform: scale(1.02);
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}
.modal-actions .listen-btn {
  flex: 1;
  text-align: center;
}

/* Bouton Fermer gris */
.close-btn {
  background: #ccc !important;
  color: #111 !important;
}
.close-btn:hover {
  background: var(--white) !important;
}

/* ===============================
   ANIMATIONS DU MODAL
   =============================== */

/* Fond */
@keyframes modalFadeIn {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.6); }
}

/* Zoom + fondu */
@keyframes modalZoomIn {
  0% { transform: scale(0.8) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Fermeture */
.modal-overlay.closing .radioone-modal {
  animation: modalZoomOut 0.3s ease forwards;
}
@keyframes modalZoomOut {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0; }
}

/* Bouton flottant pulse */
@keyframes pulseButton {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(229,25,55,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(229,25,55,0.5); }
}
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(229,25,55,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
  animation: pulseButton 4s infinite ease-in-out;
}
.floating-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.05);
}
.floating-btn:active {
  transform: scale(0.95);
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 600px) {
  .radioone-modal {
    padding: 20px;
  }
  .modal-header img {
    width: 55px;
    margin-bottom: 6px;
  }
  .modal-header::after {
    width: 70px;
    height: 70px;
  }
}

/* ===============================
   PAGE BLOG AVEC SIDEBAR
   =============================== */

.blog-hero {
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}
.blog-hero h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}
.blog-hero p {
  max-width: 600px;
  margin: auto;
  font-size: 1rem;
  color: #f4f4f4;
}

/* Layout principal */
.blog-page {
  display: grid;
  grid-template-columns: 2.1fr 0.9fr;
  gap: 30px;
  margin: 50px auto;
  animation: fadeInUp 1s ease;
}

/* === Articles === */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-content {
  padding: 15px;
}
.blog-card h4 a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s;
}
.blog-card h4 a:hover {
  color: var(--red);
}
.blog-card p {
  color: #444;
  margin-top: 8px;
}
.blog-card small {
  display: block;
  margin-top: 10px;
  color: #666;
}
.blog-card .cat {
  color: var(--red);
  font-weight: 600;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* === Sidebar === */
.blog-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  height: fit-content;
  animation: fadeIn 1.2s ease;
}
.sidebar-section {
  margin-bottom: 25px;
}
.sidebar-section h4 {
  color: var(--blue);
  margin-bottom: 10px;
  border-left: 4px solid var(--red);
  padding-left: 8px;
}
.sidebar-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-section ul li {
  margin-bottom: 8px;
}
.sidebar-section ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}
.sidebar-section ul li a:hover {
  color: var(--red);
}

/* Bloc spécial */
.sidebar-section.highlight {
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  padding: 20px;
  text-align: center;
}
.sidebar-section.highlight h4 {
  color: var(--white);
  border: none;
  margin-bottom: 10px;
}
.sidebar-section.highlight p {
  font-size: 0.9rem;
  color: #f8f8f8;
}
.sidebar-section.highlight .listen-btn {
  background: var(--white);
  color: var(--red);
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 950px) {
  .blog-page {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    margin-top: 30px;
  }
  .blog-card img {
    height: 180px;
  }
}




/* ===============================
   PAGE ARTICLE
   =============================== */

/* ===============================
   📰 ARTICLE PAGE + SIDEBAR
   =============================== */

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 40px;
}

.article-main img.article-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.article-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.article-actions {
  margin-bottom: 30px;
}

.like-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.like-btn:hover {
  background: var(--blue);
  transform: scale(1.05);
}

/* Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 15px;
}

.sidebar-box h4 {
  color: var(--blue);
  margin-bottom: 10px;
  border-left: 4px solid var(--red);
  padding-left: 8px;
}

.sidebar-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-box ul li {
  margin-bottom: 8px;
}
.sidebar-box ul li a {
  color: var(--text);
  text-decoration: none;
}
.sidebar-box ul li a:hover {
  color: var(--red);
}

.social-links a {
  font-size: 1.4rem;
  margin-right: 10px;
  text-decoration: none;
}

.social-links a:hover {
  filter: brightness(1.2);
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    order: -1;
  }
}


/* ===============================
   🔗 PARTAGE D'ARTICLE
   =============================== */

.share-box {
  text-align: center;
}

.share-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--white);
  transition: transform 0.2s ease, opacity 0.3s;
  text-decoration: none;
}

.share-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Couleurs des réseaux */
.share-btn.fb { background: #1877F2; }    /* Facebook */
.share-btn.tw { background: #1DA1F2; }    /* Twitter */
.share-btn.wa { background: #25D366; }    /* WhatsApp */
.share-btn.copy { background: var(--blue); } /* Copier lien */

/* Petites icônes */
.share-btn:active {
  transform: scale(0.9);
}

/* Responsive */
@media (max-width: 600px) {
  .share-links {
    justify-content: flex-start;
  }
}


.article-hero {
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}
.article-hero h2 {
  margin: 0 0 10px;
}
.article-hero p {
  color: #f4f4f4;
}

.article-content {
  margin-top: 40px;
}
.article-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-body {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

/* Like bouton */
.article-actions {
  margin-top: 20px;
  text-align: center;
}
.like-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.like-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.05);
}
.like-btn:active {
  transform: scale(0.95);
}

/* Articles similaires */
.related {
  margin-top: 60px;
}
.related h3 {
  color: var(--blue);
  border-left: 5px solid var(--red);
  padding-left: 10px;
  margin-bottom: 20px;
}

/* Commentaires */
.comments {
  margin-top: 60px;
}
.comment-card {
  background: var(--white);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 15px;
  margin-bottom: 15px;
}
.comment-form {
  margin-top: 30px;
  background: var(--gray);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
}
.comment-form button {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .article-img {
    max-height: 250px;
  }
}

/* ===============================
   ANIMATIONS LIKE ❤️
   =============================== */
.like-btn {
  position: relative;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}
.like-btn:hover {
  background: var(--white);
  color: var(--red);
  transform: scale(1.05);
}
.like-btn:active {
  transform: scale(0.95);
}

/* Cœur volant */
.heart-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  font-size: 2rem;
  color: var(--red);
  pointer-events: none;
  transition: all 0.5s ease;
}

/* Animation active */
.heart-burst.active {
  animation: heartPop 0.6s ease forwards;
}

@keyframes heartPop {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.7;
  }
  40% {
    transform: translate(-50%, -120%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -200%) scale(0);
    opacity: 0;
  }
}

/* Légère pulsation du bouton */
.like-btn.liked {
  animation: pulseLike 0.4s ease;
}
@keyframes pulseLike {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); background: #ff3355; }
  100% { transform: scale(1); }
}


/* ===============================
   FILTRAGE DYNAMIQUE / CHARGEMENT
   =============================== */
.loading-text {
  text-align: center;
  padding: 40px 0;
  color: #666;
  font-weight: 500;
}

.sidebar-section ul li a.active-cat {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}


/* ===============================
   FILTRAGE DYNAMIQUE / CHARGEMENT
   =============================== */
.loading-text {
  text-align: center;
  padding: 40px 0;
  color: #666;
  font-weight: 500;
}

.sidebar-section ul li a.active-cat {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}


/* ===============================
   🎧 RADIO ONE MINI PLAYER FIXE
   =============================== */

#radio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--blue), var(--red));
  color: var(--white);
  padding: 10px 20px;
  box-shadow: 0 -3px 10px rgba(0,0,0,0.2);
  z-index: 2000;
}

.player-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.player-info {
  display: flex;
  flex-direction: column;
}
.player-info strong {
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.player-info .now-playing {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Bouton Play / Pause */
.play-btn {
  background: var(--white);
  color: var(--red);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}

/* Animation quand la radio joue */
body.radio-on #radio-player {
  box-shadow: 0 -4px 20px rgba(229,25,55,0.7);
  animation: glowPulse 3s infinite ease-in-out;
}
@keyframes glowPulse {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Pour mobile */
@media (max-width: 600px) {
  #radio-player {
    padding: 10px;
  }
  .player-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .player-info strong {
    font-size: 0.9rem;
  }
}


/* ===============================
   📢 RADIO ONE - Bouton Publicité (bas gauche)
   =============================== */

/* Bouton flottant */

.floating-btn-small {
  position: fixed;
  bottom: 90px; /* au-dessus du mini player */
  left: 25px;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 3000;
}
.floating-btn-small:hover {
  background: var(--blue);
  transform: scale(1.1);
}

/* Accessibilité (infobulle titre) */
.floating-btn-small[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 60px;
  left: 60px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* Modale */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 4000;
}

.modal-box {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

.radioone-modal img {
  width: 80px;
  display: block;
  margin: 0 auto 10px;
}

.radioone-modal h3 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 5px;
}
.radioone-modal p {
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.modal-box label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-top: 10px;
}
.modal-box input,
.modal-box textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-top: 5px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.modal-box input:focus,
.modal-box textarea:focus {
  border-color: var(--red);
  outline: none;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.close-btn {
  background: #ccc;
  color: var(--text);
}
.close-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* Animation */
@keyframes modalFadeIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 600px) {
  .floating-btn {
    bottom: 100px;
    left: 15px;
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}


/* 🐦 Section Twitter compacte et moderne */
.tweet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.2rem;
}

.tweet-mini-card {
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tweet-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.tweet-mini-image {
  height: 130px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #eee;
}

.tweet-mini-body {
  padding: 0.9rem 1rem;
}

.tweet-mini-text {
  font-size: 0.9rem;
  color: #222;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  min-height: 55px;
}

.tweet-mini-body small {
  font-size: 0.8rem;
}

.btn-outline-primary {
  font-size: 0.8rem;
  border-radius: 8px;
  padding: 4px 0;
}

@media (max-width: 576px) {
  .tweet-mini-card {
    border-radius: 10px;
  }
  .tweet-mini-image {
    height: 110px;
  }
}

