.news-box {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 250px;
  max-height: 300px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 0.9em;
  text-align: left;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  overflow: hidden;
  transition: 0.3s ease;
  overscroll-behavior: contain;
}

#news-scroll {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Scrollbar stylée */
#news-scroll::-webkit-scrollbar {
  width: 6px;
}
#news-scroll::-webkit-scrollbar-thumb {
  background-color: #00c6ff;
  border-radius: 3px;
}
#news-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.news-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #00c6ff;
}

.news-item {
  margin-bottom: 10px;
  color: #ccc;
}

.news-item strong {
  color: #6cf;
}

.news-item p {
  margin: 5px 0 0 0;
  color: #ddd;
  font-size: 0.9em;
}

#news-more {
  display: block;
  margin: 10px auto 0 auto;
  padding: 5px 10px;
  background: #00c6ff;
  border: none;
  border-radius: 6px;
  color: #000;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.3s ease;
}
#news-more:hover {
  background: #0090cc;
}

/* Liens (généraux + vidéos) */
.news-box a,
.video-links a {
  color: #00c6ff !important;
  text-decoration: none !important;
  font-family: 'Segoe UI', sans-serif !important;
  font-size: 0.9em !important;
}

.news-box a:hover,
.video-links a:hover {
  text-decoration: underline !important;
  color: #00aaff !important;
}
