/* =========================== */
/* 🚨 Featured Glass Banner UI */
/* =========================== */

.featured-banner {
  position: relative;
  background: rgba(77, 216, 255, 0.15);
  color: #f2f2f2;
  font-weight: 600;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease, color 0.3s ease;
}

/* 🔗 Banner Link */
.featured-banner a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.featured-banner a:hover {
  text-decoration: underline;
  color: #66e0ff;
}

/* 🌞 Light Mode Styling */
body.light-mode .featured-banner {
  background: rgba(162, 232, 255, 0.5);
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}

body.light-mode .featured-banner a:hover {
  color: #007acc;
}

/* 📱 Mobile Adjustments */
@media (max-width: 600px) {
  .featured-banner {
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
  }
}
