html {
  scroll-behavior: smooth;
}

body {
  padding-bottom: 96px;
  padding-top: 70px;
}

/* Navbar styling */
.navbar {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link {
  font-weight: 600;
  padding: 12px 18px;
  color: #222 !important;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 6px;
}

.navbar .nav-link:hover {
  color: #106eea !important;
  background-color: rgba(16, 110, 234, 0.08);
}

.navbar .nav-link.active {
  color: #106eea !important;
  background-color: rgba(16, 110, 234, 0.15);
}

.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

section {
  padding: 100px 0;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.radio-player {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #dee2e6;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.player-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 28px;
}

.resume-hint {
  display: none;
}

.resume-hint.show {
  display: inline-flex;
}

.player-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
  transition: all 0.2s ease;
}

.player-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.5);
}

.track-info h6 {
  font-weight: 600;
}

.track-info small {
  font-size: 0.85rem;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-control i {
  font-size: 20px;
  color: #6c757d;
}

.volume-control input[type="range"] {
  accent-color: #0d6efd;
  width: 160px;
}
