@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;500;700&display=swap');

body {
  font-family: 'Rubik', sans-serif;
  background-color: #121212;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.now-playing-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1c1c1c;
  z-index: 1000;
  border-bottom: 2px solid #ff9f43;
  padding: 1rem;
}

.station-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ff9f43;
}

.album-art-large {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #ff9f43;
}

.dj-avatar-large {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff9f43;
}

.main-content-wrapper {
  padding: 130px 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-sections {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-box,
.ad-box,
.history-box {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #ff9f43;
  border-radius: 10px;
  padding: 20px;
  min-height: 400px;
  flex: 1 1 30%;
}

.news-scroll-box {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}

.news-scroll-box::-webkit-scrollbar {
  width: 6px;
}

.news-scroll-box::-webkit-scrollbar-thumb {
  background-color: #ff9f43;
  border-radius: 10px;
}

.history-art {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ff9f43;
}

.navbar .nav-link.active {
  color: #ff9f43 !important;
  font-weight: 700;
}

.navbar.bg-secondary {
  background: rgba(12, 12, 12, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(29, 185, 84, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  border-radius: 999px;
  margin: 0.15rem 0.2rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

.staff-box {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #ff9f43;
  border-radius: 10px;
  padding: 20px;
  min-height: 400px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.staff-card {
  font: inherit;
  background: rgba(16, 16, 16, 0.9);
  border: 1px solid #ff9f43;
  border-radius: 10px;
  padding: 1.2rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.staff-card:hover,
.staff-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  border-color: #ffd39b;
  outline: none;
}

.staff-card.is-selected {
  border-color: #ffd39b;
  box-shadow: 0 0 0 2px rgba(124, 255, 191, 0.25);
}

.staff-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff9f43;
  background-color: #111;
  margin-bottom: 0.9rem;
}

.staff-name {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.staff-role {
  color: #bfbfbf;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.staff-detail {
  background: rgba(16, 16, 16, 0.95);
  border: 1px solid #ff9f43;
  border-radius: 10px;
  padding: 1rem;
  min-height: 170px;
}

.staff-detail-placeholder {
  color: #bfbfbf;
}

.staff-detail-content {
  display: block;
}

.staff-detail-kicker {
  color: #ff9f43;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.staff-detail-role {
  color: #bfbfbf;
}

.about-box {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #ff9f43;
  border-radius: 10px;
  padding: 24px;
  min-height: 260px;
}

.about-copy {
  color: #f0f0f0;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 900px;
}

footer {
  background-color: #101010;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  border-top: 2px solid #ff9f43;
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  .main-sections {
    flex-direction: column;
  }
.news-box,
.ad-box,
.history-box {
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid #ff9f43;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 30%;
  min-height: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


  .now-playing-header {
    flex-direction: column;
    text-align: center;
  }

  .album-art-large,
  .dj-avatar-large {
    width: 80px;
    height: 80px;
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }

  .navbar .nav-link {
    margin: 0.15rem 0;
  }

}
