/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* ===== SMOOTH SCROLL ===== */
html { 
  scroll-behavior: smooth; 
}

/* ===== NAVBAR ===== */
#navbar {
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
  transition: transform .25s ease, background .25s, box-shadow .25s;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

#navbar.hide { 
  transform: translateY(-100%); 
}

#navbar.scrolled {
  background: rgba(255, 30, 30, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-link, .navbar-brand { 
  color: #fff !important; 
  transition: opacity .2s ease;
}

.nav-link:hover { 
  opacity: .75; 
  transform: translateY(-2px);
}

.navbar-brand img {
  transition: transform .3s ease;
}

.navbar-brand:hover img {
  transform: rotate(360deg);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .6)), 
              url('../img/banner.jpeg') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 120px 20px 80px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: 1.6rem;
  opacity: .95;
  margin-top: 15px;
  animation: fadeInUp 1s ease 0.4s both;
}

/* === TYPING text === */
.typing {
  color: #FF1E1E;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.typing::after {
  content: "|";
  animation: blink .7s infinite;
}

@keyframes blink { 
  50% { opacity: 0; } 
}

.hero-desc {
  margin-top: 15px;
  font-size: 1.1rem;
  opacity: .9;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-buttons .btn {
  padding: 12px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-danger:hover {
  background: #C00000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 30, 30, 0.4);
}

.hero-buttons .btn-outline-light:hover {
  background: #fff;
  color: #FF1E1E;
  transform: translateY(-3px);
}

/* ===== PLAYER SECTION ===== */
.player-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 30px 0;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.player-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 30, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 30, 30, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.player-container {
  position: relative;
  z-index: 1;
}

.player-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 30px;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 25px;
}

.player-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

#playerBtn {
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
  border: none;
  font-weight: 600;
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(255, 30, 30, 0.4);
  position: relative;
  overflow: hidden;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

#playerBtn i {
  font-size: 1.8rem;
  position: relative;
  z-index: 2;
  color: #fff;
}

#playerBtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s;
}

#playerBtn:hover::before {
  width: 200px;
  height: 200px;
}

#playerBtn:hover { 
  background: linear-gradient(135deg, #D81B1B 0%, #C00000 100%);
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 30, 30, 0.6);
}

#playerBtn:active {
  transform: scale(0.95);
}

#playerBtn.playing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 30, 30, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 30, 30, 0.7), 0 0 30px rgba(255, 30, 30, 0.3);
  }
}

.equalizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 35px;
  opacity: 0;
  transition: opacity .3s;
}

.equalizer.active {
  opacity: 1;
}

.equalizer-bar {
  width: 3px;
  background: linear-gradient(to top, #FF1E1E, #FF6B6B);
  border-radius: 2px;
  animation: equalize 0.8s ease-in-out infinite;
}

.equalizer-bar:nth-child(1) { animation-delay: 0s; height: 10px; }
.equalizer-bar:nth-child(2) { animation-delay: 0.1s; height: 18px; }
.equalizer-bar:nth-child(3) { animation-delay: 0.2s; height: 14px; }
.equalizer-bar:nth-child(4) { animation-delay: 0.3s; height: 22px; }
.equalizer-bar:nth-child(5) { animation-delay: 0.4s; height: 12px; }

@keyframes equalize {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.6); }
}

.player-center {
  flex: 1;
  min-width: 0;
}

.player-info {
  text-align: left;
}

.now-playing {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 30, 30, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 30, 30, 0.3);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #FF1E1E;
  border-radius: 50%;
  animation: blink-live 1.5s infinite;
}

@keyframes blink-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-text {
  color: #FF1E1E;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.song-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-artist {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.volume-control i {
  font-size: 1.1rem;
  cursor: pointer;
  transition: color .2s;
  width: 20px;
  text-align: center;
}

.volume-control i:hover {
  color: #FF1E1E;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF1E1E;
  cursor: pointer;
  transition: all .2s;
}

.volume-slider::-webkit-slider-thumb:hover {
  background: #C00000;
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FF1E1E;
  cursor: pointer;
  border: none;
  transition: all .2s;
}

.volume-slider::-moz-range-thumb:hover {
  background: #C00000;
  transform: scale(1.2);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FF1E1E;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FF1E1E, transparent);
  border-radius: 2px;
}

/* ===== TENTANG SECTION ===== */
#tentang {
  background: #fff;
  padding: 80px 20px;
}

#tentang p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== PROGRAM CARDS ===== */
#program {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 80px 20px;
}

.program-card {
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid #f0f0f0;
  transition: all .3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF1E1E, #FF6B6B);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card:hover {
  border-color: #FF1E1E;
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 30, 30, 0.2);
}

.program-card h4 {
  color: #333;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.program-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.program-card .badge {
  font-size: 0.9rem;
  padding: 8px 15px;
  font-weight: 600;
}

/* ===== PENYIAR SECTION ===== */
.penyiar-section {
  background: #fff;
  padding: 80px 20px;
}

.penyiar-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.penyiar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 30, 30, 0.15);
}

.penyiar-photo {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  overflow: hidden;
}

.penyiar-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.penyiar-card:hover .penyiar-photo img {
  transform: scale(1.1);
}

.penyiar-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: #d1d5db;
}

.penyiar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}

.penyiar-card:hover .penyiar-overlay {
  opacity: 1;
}

.penyiar-social {
  display: flex;
  gap: 12px;
}

.penyiar-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF1E1E;
  font-size: 1.2rem;
  transition: all .3s ease;
  text-decoration: none;
}

.penyiar-social a:hover {
  background: #FF1E1E;
  color: #fff;
  transform: scale(1.1);
}

.penyiar-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.penyiar-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.penyiar-nickname {
  font-size: 0.9rem;
  color: #FF1E1E;
  font-weight: 600;
  margin-bottom: 8px;
  font-style: italic;
}

.penyiar-position {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f4f6;
}

.penyiar-bio {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}

.penyiar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.penyiar-tags .badge {
  font-size: 0.7rem;
  padding: 4px 10px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

.penyiar-quote {
  background: #fef2f2;
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid #FF1E1E;
  margin-top: auto;
}

.penyiar-quote i {
  color: #FF1E1E;
  font-size: 0.8rem;
  margin-right: 5px;
}

.penyiar-quote em {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.5;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.schedule-tabs {
  flex-wrap: wrap;
  gap: 8px;
}

.schedule-tabs .nav-link {
  background: #e5e7eb;
  border: 2px solid #9ca3af;
  color: #000000;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 700;
  transition: all .3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.schedule-tabs .nav-link:hover {
  border-color: #FF1E1E;
  color: #000000;
  background: #fca5a5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 30, 30, 0.2);
}

.schedule-tabs .nav-link.active {
  background: #FF1E1E;
  border-color: #FF1E1E;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 30, 30, 0.4);
  font-weight: 700;
}

.schedule-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #FF1E1E, #FF6B6B, #FF1E1E);
  border-radius: 2px;
}

.schedule-item {
  position: relative;
  padding: 20px 0 20px 20px;
  transition: all .3s ease;
}

.schedule-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 28px;
  width: 15px;
  height: 15px;
  background: var(--item-color, #FF1E1E);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 30, 30, 0.2);
  transition: all .3s ease;
}

.schedule-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(255, 30, 30, 0.2);
}

.schedule-item:hover {
  transform: translateX(5px);
}

.schedule-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--item-color, #FF1E1E);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
}

.schedule-item:hover .schedule-content {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-left-width: 6px;
}

.time-badge {
  display: inline-block;
  background: var(--item-color, #FF1E1E);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.schedule-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.schedule-host {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.schedule-host i {
  color: var(--item-color, #FF1E1E);
  margin-right: 5px;
}

.schedule-desc {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== ADVERTISING SECTION ===== */
.advertising-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 80px 20px;
}

/* Time Info */
.time-info-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.time-info {
  background: #fff;
  border-radius: 12px;
  padding: 15px 25px;
  border: 2px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.time-info.prime {
  border-color: #FF1E1E;
  background: linear-gradient(135deg, #fff 0%, #ffebee 100%);
}

.time-info.regular {
  border-color: #6b7280;
  background: linear-gradient(135deg, #fff 0%, #f3f4f6 100%);
}

.time-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-info.prime .time-label {
  color: #FF1E1E;
}

.time-info.regular .time-label {
  color: #6b7280;
}

.time-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

/* Ad Category Cards */
.ad-category-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
  height: 100%;
  border: 3px solid #e5e7eb;
  position: relative;
}

.ad-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 30, 30, 0.2);
  border-color: #FF1E1E;
}

.ad-category-header {
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  position: relative;
}

.ad-category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.ad-category-header i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ad-category-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ad-category-body {
  padding: 0;
}

/* Ad Table */
.ad-table {
  width: 100%;
  border-collapse: collapse;
}

.ad-table thead {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
}

.ad-table thead th {
  padding: 12px 15px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #FF1E1E;
}

.ad-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background .2s ease;
}

.ad-table tbody tr:hover {
  background: #fef2f2;
}

.ad-table tbody tr:last-child {
  border-bottom: none;
}

.ad-table td {
  padding: 15px;
  color: #1f2937;
}

.package-name {
  font-size: 0.85rem;
  line-height: 1.4;
}

.package-name strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: #111827;
  font-weight: 700;
}

.package-name .duration {
  display: inline-block;
  font-size: 0.75rem;
  color: #6b7280;
  font-style: italic;
}

.package-name-full {
  text-align: center;
  font-size: 0.9rem;
  padding: 12px 15px 8px;
}

.package-name-full strong {
  display: block;
  font-weight: 700;
  margin-bottom: 3px;
  color: #111827;
}

.price-row {
  border-top: none !important;
}

.price-row td {
  padding-top: 0 !important;
  padding-bottom: 12px !important;
}

.price {
  text-align: center;
  vertical-align: middle;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 30, 30, 0.3);
  transition: all .3s ease;
}

.price-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 30, 30, 0.5);
}

.price-tag.prime {
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
  color: #fff;
}

.price-tag.regular {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: #fff;
}

.price-tag.disabled {
  background: #e5e7eb;
  color: #9ca3af;
  box-shadow: none;
}

/* Icon Styling per Category */
.ad-category-card.social-media .ad-category-header {
  background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
}

.ad-category-card.on-air .ad-category-header {
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
}

.ad-category-card.off-air .ad-category-header {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

/* CTA Button */
.advertising-section .btn-danger {
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 40px;
  box-shadow: 0 5px 20px rgba(255, 30, 30, 0.4);
  transition: all .3s ease;
}

.advertising-section .btn-danger:hover {
  background: linear-gradient(135deg, #D81B1B 0%, #C00000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 30, 30, 0.6);
}

/* Additional Decoration */
.ad-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF1E1E, #FF6B6B, #FF1E1E);
  opacity: 0;
  transition: opacity .3s ease;
}

.ad-category-card:hover::before {
  opacity: 1;
}

/* ===== KONTAK SECTION ===== */
#kontak {
  background: linear-gradient(135deg, #FF1E1E 0%, #D81B1B 100%);
  color: #fff;
  padding: 80px 20px;
}

#kontak h2 {
  color: #fff;
  margin-bottom: 20px;
}

#kontak p {
  font-size: 1.2rem;
  margin: 10px 0;
}

.social-links {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #fff;
  font-size: 2rem;
  transition: all .3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* ===== NEWS SECTION ===== */
.news-section {
  background: #fff;
  padding: 80px 20px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 30, 30, 0.15);
}

.news-image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: #f3f4f6;
}

.news-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 30, 30, 0.9);
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.news-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-title a {
  color: #1f2937;
  text-decoration: none;
  transition: color .3s ease;
}

.news-title a:hover {
  color: #FF1E1E;
}

.news-excerpt {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f3f4f6;
}

.news-author {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 500;
}

.news-author i {
  color: #FF1E1E;
}

.news-footer .btn {
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .news-section {
    padding: 60px 20px;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .news-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .news-footer .btn {
    width: 100%;
  }
}

/* ===== FULLSCREEN MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-link {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 15px 0;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  padding: 10px 30px;
}

.mobile-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: #FF1E1E;
  transition: transform .3s ease;
}

.mobile-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.mobile-link:hover { 
  color: #FF1E1E; 
  transform: scale(1.1);
}

.close-menu-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: all .3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-menu-btn:hover {
  color: #FF1E1E;
  transform: rotate(90deg);
}

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  color: #999;
  font-size: 14px;
  padding: 25px 20px;
  border-top: 3px solid #FF1E1E;
}

/* ===== LOADING ANIMATION ===== */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animation for tab content */
.tab-pane {
  animation: fadeIn 0.4s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ad-category-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    padding: 100px 25px 60px;
  }

  .hero-title { 
    font-size: 2.5rem; 
    letter-spacing: 1px;
  }
  
  .hero-subtitle { 
    font-size: 1.2rem; 
  }
  
  .hero-desc { 
    font-size: 1rem; 
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  #tentang p,
  #kontak p {
    font-size: 1rem;
  }

  .program-card h4 {
    font-size: 1.2rem;
  }

  .player-wrapper {
    padding: 20px;
    gap: 15px;
  }

  .player-left {
    gap: 12px;
  }

  #playerBtn {
    width: 60px;
    height: 60px;
  }

  #playerBtn i {
    font-size: 1.5rem;
  }

  .equalizer {
    height: 30px;
  }

  .song-title {
    font-size: 1rem;
  }

  .song-artist {
    font-size: 0.85rem;
  }

  .volume-slider {
    width: 60px;
  }

  .volume-control i {
    font-size: 1rem;
  }

  .schedule-tabs .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #1f2937;
  }

  .schedule-timeline {
    padding-left: 25px;
  }

  .schedule-item::before {
    left: -32px;
    width: 12px;
    height: 12px;
  }

  .schedule-content {
    padding: 15px;
  }

  .schedule-title {
    font-size: 1.05rem;
  }

  .time-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .penyiar-name {
    font-size: 1.1rem;
  }

  .penyiar-bio {
    font-size: 0.8rem;
  }

  .penyiar-social a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .time-info-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .time-info {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .ad-category-header h3 {
    font-size: 1.2rem;
  }

  .ad-category-header i {
    font-size: 2rem;
  }

  .ad-table thead th {
    font-size: 0.8rem;
    padding: 10px 8px;
  }

  .ad-table td {
    padding: 12px 10px;
  }

  .package-name strong {
    font-size: 0.85rem;
  }

  .price-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .advertising-section .btn-danger {
    font-size: 1rem;
    padding: 12px 30px;
  }
}

@media (max-width: 576px) {
  .hero-title { 
    font-size: 2rem; 
  }
  
  .hero-subtitle { 
    font-size: 1.1rem; 
  }

  #playerBtn {
    font-size: 1rem;
    padding: 10px 35px;
  }

  .player-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }

  .player-left {
    width: 100%;
    justify-content: center;
  }

  .player-center {
    width: 100%;
    text-align: center;
  }

  .player-info {
    text-align: center;
  }

  .now-playing {
    justify-content: center;
  }

  .song-title,
  .song-artist {
    text-align: center;
  }

  .player-right {
    width: 100%;
    justify-content: center;
  }

  .volume-slider {
    width: 120px;
  }

  .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .penyiar-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .ad-table thead th {
    font-size: 0.75rem;
    padding: 8px 5px;
  }

  .ad-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .price-tag {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}