/* YOUR EXACT EKPIN COLORS & ANIMATIONS */
.bg-ekpinBlue { background-color: #06163a; }
.bg-ekpinWhite { background-color: #ffffff; }
.bg-ekpinRed { background-color: #cc0000; }
.text-ekpinWhite { color: #f8fafc; }
.text-ekpinBlack { color: #000000; }
.text-ekpinRed { color: #dc2626; }
.hover\:text-ekpinRed:hover { color: #dc2626; }

/* YOUR MARQUEE ANIMATION */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.animate-marquee {
    display: inline-block;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
}
.animate-marquee:hover { animation-play-state: paused; }

/* YOUR FLOATING BUTTONS */
.floating-btn {
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.floating-btn:hover { transform: scale(1.1); }

/* Fade animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn { animation: fadeIn 0.6s ease-in-out forwards; }

/* ========================================
   RADIO PLAYER STYLES
   ======================================== */
.radio-player {
    max-width: 600px;
    margin: 0 auto;
}

.bar {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.play-pause-container {
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.4);
}

.play-pause-container:hover {
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.6);
}

/* Visualizer responsive */
@media (max-width: 768px) {
    .visualizer .bar {
        width: 1.5px;
    }
    
    .player-controls {
        flex-direction: column;
        gap: 2rem;
    }
    
    .play-pause-container {
        width: 32vw;
        height: 32vw;
        max-width: 120px;
        max-height: 120px;
    }
}
/* ========================================
   EKPIN EVENTS GALLERY - FULLY RESPONSIVE
   ======================================== */

/* Gallery Filter Buttons */
.gallery-filter-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gallery-filter-btn.active {
  box-shadow: 0 10px 30px rgba(6, 22, 58, 0.4);
  transform: translateY(-2px);
}

.gallery-filter-btn:hover {
  transform: translateY(-1px);
}

/* Gallery Grid Container */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Gallery Items */
.gallery-item {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

/* Gallery Images */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Gallery Content */
.gallery-item .p-6 h4 {
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.gallery-item .p-6 p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Responsive Breakpoints */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Desktop (1024px - 1399px) */
@media (min-width: 1024px) and (max-width: 1399px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

/* Tablet Large (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 100%;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Tablet Small (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
}

/* Mobile Large (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 1.5rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1.25rem;
    padding: 0 1rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .gallery-item .p-6 {
    padding: 1.25rem !important;
  }
}

/* Filter Animation */
.gallery-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.gallery-item.hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

/* Loading Animation */
.gallery-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter Button Active State */
.gallery-filter-btn.active {
  background: linear-gradient(135deg, #06163a 0%, #1e3a5f 100%);
  box-shadow: 0 12px 40px rgba(6, 22, 58, 0.4);
}

/* Container Spacing */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Smooth Transitions */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* High Performance Animations */
.gallery-item,
.gallery-filter-btn {
  will-change: transform, opacity;
  backface-visibility: hidden;
}
/* ========================================
   LIGHTBOX GALLERY - FULL FEATURED
   ======================================== */

/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Lightbox Container */
.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 24px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 0, 0, 0.4);
  transform: scale(1.1);
}

/* Counter */
.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 25px;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-container {
    max-width: 95vw;
    max-height: 85vh;
  }
  
  .lightbox-nav {
    width: 50px;
    height:

     .countdown-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin: 0 auto;
        }
       
        .youtube-iframe {
            width: 100%;
            height: 100%;
            border-radius: 16px;
        }
        <!-- CSS for smooth transitions -->

.countdown-overlay {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.live-status {
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#liveIframe {
  transition: filter 0.3s ease;
}
#liveIframe.muted {
  filter: grayscale(100%) brightness(0.7);
}