  /* Ads Banner */
    .ads-banner {
      overflow: hidden;
      position: relative;
      background: #fff;
      border: 1px solid #eee;
      padding: 10px 0;
      margin-bottom: 2rem;
    }
    .ads-track {
      display: flex;
      width: max-content;
      animation: scrollAds 25s linear infinite;
    }
    .ads-track a {
      flex-shrink: 0;
      margin: 0 20px;
    }
    .ads-track img {
      height: 80px;
      width: auto;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    .ads-track img:hover {
      transform: scale(1.05);
    }
    .ads-banner:hover .ads-track {
      animation-play-state: paused;
    }
    @keyframes scrollAds {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
     /* Footer */
    footer { background:#f97316; color:white; }
    .footer-icon { background:rgba(255,255,255,0.2); }
    .footer-icon:hover { background:white; color:#f97316; }


    #ads-banner { 
    width: 100%; 
    height: 200px; 
    background: #fff; 
    border-radius: 8px; 
    overflow: hidden; 
  }

  #ads-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
  }

  .ads-item { 
    flex-shrink: 0; 
    position: relative; 
    cursor: pointer; 
    margin-right: 10px; /* spacing between ads */
  }

  .ads-item img { 
    height: 100%;              /* keep fixed banner height */
    width: auto;               /* keep original width */
    object-fit: contain;       /* don’t crop the image */
    display: block; 
  }

  .ads-item .ads-text { 
    position: absolute; 
    bottom: 10px; left: 10px; 
    background: rgba(0,0,0,0.5); 
    color: #fff; 
    padding: 6px 12px; 
    border-radius: 4px; 
    font-size: 0.9rem; 
  }

  /* pause animation on hover */
  #ads-banner:hover #ads-track { 
    animation-play-state: paused; 
  }
  
  .admin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #007bff; /* Blue */
    color: white;
    font-size: 30px;
    border-radius: 50%;        /* Circle */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }
  
  .admin-icon:hover {
    background-color: #28a745; /* Green */
    transform: scale(1.1);
  }
  /* Add to <style> or style.css for Enhanced Design */
.prog-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.prog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.prog-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.prog-info {
  padding: 1rem;
}
.prog-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.prog-time {
  color: #f97316;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.prog-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.live-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(239,68,68,0.3);
}
.is-live {
  border: 2px solid #ef4444;
  position: relative;
}
.upcoming-highlight {
  min-width: 100%;
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.upcoming-info {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  width: 100%;
}
.upcoming-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.upcoming-time {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .upcoming-highlight { height: 200px; }
  .upcoming-info { padding: 1.5rem 1rem 1rem; }
}