:root {
  --primary: #004aad;
  --accent: #ffcc00;
  --background: #0c0c0c;
  --foreground: #ffffff;
  --muted: #cccccc;
  --card-bg: #1a1a1a;
  --card-border: #333333;
}

body {
  background-color: var(--background);
  color: var(--foreground);
}

.navbar {
  background-color: var(--background);
}

.navbar-brand {
  font-weight: bold;
  color: var(--primary);
}

.navbar-nav .nav-link {
  color: var(--foreground);
}

.navbar-nav .nav-link:hover {
  color: var(--accent);
}

/* Hero */
.hero-img {
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.carousel-item::before {
  /* content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0)); */
  /* z-index: 1; */
}

.caption-left {
  left: 5%;
  text-align: left;
  top: 50%;
  z-index: 2;
  opacity: 0;
  transform: translate(-50px, -50%);
  transition: all 0.8s ease-in-out;
}

.caption-left.active {
  opacity: 1;
  transform: translate(0, -50%);
}


.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 4rem;
}

.hero-text {
  font-size: 1.5rem;
  max-width: 600px;
}

.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--foreground);
}

.btn-primary-custom:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--background);
}

/* Services overlapping hero */
#services {
  margin-top: -20%;
  z-index: 3;
  position: relative;
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--foreground);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
}

/* Carousel controls */
.carousel-controls-left {
  position: absolute;
  top: 63%;
  left: 5%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.carousel-controls-left .btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.1);
}

.carousel-controls-left .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.hero-content {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}





footer {
  background-color: var(--card-bg);
  color: var(--muted);
  padding: 3rem 0;
}

footer a {
  color: var(--muted);
}

footer a:hover {
  color: var(--accent);
}




/* Hero */
.hero {
  position: relative;
  background: url('https://via.placeholder.com/1600x600') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,12,12,0.8), rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
}


.service-image{
  width: 100%;
  height: 150px;
  object-fit: fill;
}


.hero-indicators {
  position: absolute;
  bottom: 266px;
  left: 0 !important;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start !important;
  margin-left: 5% !important;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  border: none;
  transition: all 0.3s;
}

.hero-indicators button.active {
  background-color: var(--accent);
}

.hero-indicators button:hover {
  background-color: var(--primary);
}



.service-card, .package-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--foreground);
  transition: transform 0.3s;
}

.service-card:hover, .package-card:hover {
  transform: scale(1.05);
}

.badge-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--background);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: bold;
}

.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary-custom:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--background);
}

footer {
  background-color: var(--card-bg);
  color: var(--muted);
  padding: 3rem 0;
}

footer a {
  color: var(--muted);
}

footer a:hover {
  color: var(--accent);
}





/* Recorded TV Programs Section */
#recorded {
  background-color: #111;
  color: var(--foreground);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
}

.recorded-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Webkit browsers */
.recorded-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.recorded-slider {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.recorded-card {
  min-width: 250px;
  background-color: var(--card-bg);
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  scroll-snap-align: start; /* snap */
}

.recorded-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.recorded-card h5 {
  margin: 0.5rem;
}

.recorded-card p {
  margin: 0.25rem 0.5rem 0.5rem 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.recorded-card:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}


/* TZ Stations Section */
#tz-stations {
  background: linear-gradient(135deg, #0c0c0c, #1a1a1a);
  color: var(--foreground);
  position: relative;
  overflow: hidden;
}

#tz-stations::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  animation: rotate-bg 30s linear infinite;
  z-index: 0;
}

@keyframes rotate-bg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.station-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.station-card img {
  width: 170px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.station-card h5 {
  font-weight: 600;
  color: var(--foreground);
}

.station-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.station-card:hover img {
  transform: scale(1.15);
}

.station-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,204,0,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.station-card:hover::after {
  opacity: 1;
}




/* Call To Action Section */
.cta-section {
  position: relative;
  background: url('https://wallpapercave.com/wp/wp7528834.jpg') center/cover no-repeat;
  color: var(--foreground);
  padding: 7rem 2rem;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.5));
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease forwards;
}

.cta-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease forwards;
}

/* Glowing Subscribe Button */
.btn-glow {
  background-color: var(--accent);
  color: var(--background);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.btn-glow:hover {
  background-color: #ffd633;
  box-shadow: 0 0 25px rgba(255, 204, 0, 1), 0 0 50px rgba(255, 204, 0, 0.6);
  transform: translateY(-2px);
}

/* CTA Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* Glow pulse animation */
.btn-glow {
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(255,204,0,0.4); }
  100% { box-shadow: 0 0 25px rgba(255,204,0,0.9); }
}



/* Self Service Section */
#self-service {
  background-color: var(--background);
  position: relative;
}

#self-service .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: var(--foreground);
}

.service-box {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 74, 173, 0.3);
}

.icon-wrapper {
  font-size: 2.8rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.service-box:hover .icon-wrapper {
  transform: scale(1.2) rotate(-5deg);
}

.service-box h5 {
  font-weight: 600;
  color: var(--foreground);
}

.service-box p {
  font-size: 0.95rem;
  color: var(--muted);
}


/* Contact Section */
.contact-section {
  background: linear-gradient(to right, rgba(0, 74, 173, 0.9), rgba(0, 0, 0, 0.9)),
              url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  position: relative;
}

.contact-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: #fff;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ddd;
}

.contact-info .info-item i {
  font-size: 1.8rem;
  color: var(--accent);
}

.contact-info h6 {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #fff;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  padding: 0.9rem;
  border-radius: 0.5rem;
}

.contact-form .form-control::placeholder {
  color: #ccc;
}

.contact-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.25);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 74, 173, 0.6);
}

.btn-accent {
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.4rem;
  transition: 0.3s;
}

.btn-accent:hover {
  background-color: #003f9d;
  transform: translateY(-2px);
}




/* Mobile App Section */
.mobile-app-section {
  background: linear-gradient(135deg, #001f3f 0%, #003f8c 100%);
  position: relative;
  overflow: hidden;
}

.mobile-app-section::before {
  content: '';
  /* position: absolute; */
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06), transparent 60%);
  animation: floatBg 12s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes floatBg {
  from { transform: translate(0, 0); }
  to { transform: translate(-50px, -50px); }
}

.app-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.app-title .highlight {
  color: var(--accent, #ffcc00);
}

.app-description {
  font-size: 1.1rem;
  color: #dcdcdc;
  line-height: 1.6;
  max-width: 450px;
}

.btn-app-download, .btn-app-outline {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-app-download {
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  color: #000;
  border: none;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

.btn-app-download:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
}

.btn-app-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-app-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.app-mockup {
  max-width: 350px;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transform: translateY(10px);
  transition: all 0.8s ease;
}

.app-mockup:hover {
  transform: translateY(-5px) scale(1.03);
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
}

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


/* Map Section */
#map {
  background-color: var(--background);
  color: var(--foreground);
}

#map h2 {
  letter-spacing: 2px;
  color: var(--accent);
}

.gold-divider {
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 5px;
}

.map-container {
  max-width: 100%;
  height: 450px;
  position: relative;
  border: 2px solid var(--card-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.2);
}




/* Remove any dark overlay effect from Bootstrap carousel */
#packages .carousel-inner {
  background: #ffffff00 !important;
}

/* Fix any overflow issue */
#packages .carousel-item {
  transition: transform 0.8s ease, opacity 0.6s ease;
}

#packages .carousel {
  overflow: visible; /* Fix: ensures end packages are clickable */
}

/* Package card */
.package-card {
  background: linear-gradient(180deg, #121212 0%, #000 100%);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}



/* Indicators (Instagram-like) */
.custom-package-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  margin-top: 2rem;
}

.custom-package-indicators button {
  background-color: rgba(255,255,255,0.3);
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-package-indicators button.active {
  background-color: #ffc107;
  width: 30px;
  border-radius: 12px;
}

/* Controls */


@media (max-width: 768px) {
  #packages .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .custom-package-indicators button.active {
    width: 25px;
  }
}





/* ======== PACKAGE CARD BEAUTIFIED ======== */
.package-card {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: visible;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #ffb300, #ff007a, #007bff, #00ffb3);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.package-card:hover::before {
  opacity: 0.8;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

.package-card h4 {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff, #ffcc70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.package-card p {
  font-weight: 600;
  color: #ffc107;
}

.package-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}


@keyframes pulse-glow {
  0% { transform: translateY(0) scale(1); box-shadow: 0 0 10px rgba(255, 208, 0, 0.5); }
  50% { transform: translateY(-2px) scale(1.05); box-shadow: 0 0 25px rgba(255, 208, 0, 0.8); }
  100% { transform: translateY(0) scale(1); box-shadow: 0 0 10px rgba(255, 208, 0, 0.5); }
}

/* Buttons */
.package-card .btn-outline-light {
  border: 2px solid #ffc107;
  color: #ffc107;
  font-weight: 600;
  transition: all 0.3s ease;
}

.package-card .btn-outline-light:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

/* Smooth responsive tweaks */
@media (max-width: 768px) {
  .package-card {
    margin-bottom: 1.5rem;
  }
  .badge-popular {
    font-size: 0.8rem;
  }
}


/* Prevent hover clipping inside carousel */
#packageCarousel .carousel-inner,
#packageCarousel .carousel-item,
#packages .container,
#packages {
  overflow: visible !important;
}

/* Also fix for Bootstrap’s row which sometimes clips shadows */
#packages .row {
  overflow: visible !important;
}

/* Optional: give extra padding below cards to avoid clipping */
.package-card {
  margin-bottom: 1.5rem;
  z-index: 2;
}

/* Ensure the glowing border and shadow appear fully */
.package-card:hover {
  z-index: 10;
}



/* App buttons */
.btn-app-download, .btn-app-outline {
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-app-download {
  background: linear-gradient(90deg, #fca311, #e85d04);
  color: #111;
  border: none;
}

.btn-app-download:hover {
  background: linear-gradient(90deg, #e85d04, #fca311);
  color: #fff;
}

.btn-app-outline {
  background: transparent;
  border: 1px solid #fca311;
  color: #fca311;
}

.btn-app-outline:hover {
  background: #fca311;
  color: #111;
}

/* Modal Style */
.app-modal-content {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 40px rgba(252, 163, 17, 0.3);
  animation: fadeInUp 0.4s ease-out;
}

#notifyPhone {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(252,163,17,0.6);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

#notifyPhone:focus {
  box-shadow: 0 0 12px rgba(252,163,17,0.6);
  border-color: #fca311;
  outline: none;
}

.btn-accent {
  background: linear-gradient(90deg, #fca311, #e85d04);
  border: none;
  color: #111;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background: linear-gradient(90deg, #e85d04, #fca311);
  color: #fff;
}

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

.modal-backdrop.show {
  backdrop-filter: blur(10px);
  background-color: rgba(0,0,0,0.5);
}








.login-hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1587825140708-dfaf72ae4b04?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  position: relative;
  text-align: center;
}

.login-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.login-card {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  color: white;
  animation: fadeIn 1s ease forwards;
}

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

.login-card h2 {
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  margin-bottom: 30px;
}

.login-card input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: white;
  font-size: 16px;
  width: 100%;
}

.login-card input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px var(--accent);
}

.login-card .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.login-card .actions label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.login-card .actions a {
  color: var(--accent);
  text-decoration: none;
}

.login-card button {
  background: var(--primary);
  color: var(--foreground);
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.login-card button:hover {
  background: var(--accent);
  color: var(--background);
}

.login-card .footer {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.login-card .footer a {
  color: var(--accent);
  text-decoration: none;
}

/* Slide-in from top animation */
@keyframes slideDownFade {
  0% { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.login-card {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  color: white;
  animation: slideDownFade 1s ease forwards;
}

/* Input glow effect */
.login-card input {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  color: white;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.login-card input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px 3px var(--accent);
}


/* Neon Border for SweetAlert2 modals */
.swal2-popup {
  background: #111 !important;      /* Dark background */
  border: 2px solid #fca311;       /* Neon border color */
  border-radius: 16px !important;
  box-shadow: 0 0 20px rgba(252,163,17,0.7); /* Neon glow */
  color: #fff !important;
}

.swal2-title {
  color: #fca311 !important;
  text-shadow: 0 0 5px #fca311;
}

.swal2-html-container {
  color: #dcdcdc !important;
}

.swal2-styled.swal2-confirm {
  background-color: #fca311 !important;
  color: #111 !important;
  border-radius: 12px !important;
  padding: 10px 24px;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(252,163,17,0.7);
}

.swal2-styled.swal2-cancel {
  background-color: #222 !important;
  color: #fca311 !important;
  border-radius: 12px !important;
  border: 1px solid #fca311 !important;
}

.swal2-input {
  background: #222 !important;
  border: 2px solid #fca311 !important;
  color: #fff !important;
  border-radius: 10px !important;
  box-shadow: 0 0 10px rgba(252,163,17,0.5);
}

.swal2-input:focus {
  border-color: #e85d04 !important;
  box-shadow: 0 0 15px rgba(232,93,4,0.8);
}




:root {
  --primary: #004aad;
  --accent: #ffcc00;
  --background: #0c0c0c;
  --foreground: #ffffff;
  --muted: #aaaaaa;
}

/* HERO SECTION */
.channel-hero {
  position: relative;
  background: url('https://wallpapercave.com/wp/wp6336759.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}
.channel-hero .hero-content {
  position: relative;
  z-index: 2;
}
.channel-logo {
  width: 150px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.6));
}

/* VIDEO SECTION */
.live-section .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255,255,255,0.1);
}
.live-section iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  top: 0;
  left: 0;
  border-radius: 12px;
}

/* OTHER CHANNELS */
.other-channels {
  background-color: var(--background);
}
.channels-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.channels-scroll::-webkit-scrollbar {
  display: none;
}
.channel-card {
  min-width: 160px;
  text-align: center;
  color: var(--foreground);
  transition: transform 0.3s;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 1rem;
}
.channel-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
.channel-card:hover {
  transform: scale(1.05);
  background-color: var(--primary);
}




/* recorded.css - styles specific to Recorded Programs page */

  /* Hero */
  .recorded-hero {
    position: relative;
    height: 360px;
    display: flex;
    align-items: flex-end; /* text near bottom center */
    padding: 3rem 0;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(4,9,20,0.8)), url('https://static.vecteezy.com/system/resources/thumbnails/043/555/242/small/realistic-3d-cinema-film-strip-in-perspective-isolated-on-blue-background-template-cinema-festival-movie-design-cinema-film-strip-for-ad-poster-presentation-show-brochure-banner-or-flyer-vector.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .recorded-hero .hero-inner {
    position: relative;
    z-index: 2;
  }
  
  .recorded-hero .hero-text {
    max-width: 900px;
    margin-bottom: 40px;
    color: #fff;
  }
  
  .recorded-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
  }
  
  .recorded-hero p.lead {
    color: var(--muted-2);
    font-size: 1.05rem;
  }
  
  /* feathered downward gradient (soft) */
  .hero-feather {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 160px;
    background: linear-gradient(180deg, rgba(1,3,6,0) 0%, rgba(1,3,6,0.8) 55%, rgba(1,3,6,1) 100%);
    pointer-events: none;
    z-index: 1;
  }
  
  /* Filter bar (slightly lifted) */
  .filters-section {
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  
  /* Buttons active state */
  .filter-btn.active {
    background: linear-gradient(90deg, rgba(255,204,0,0.12), rgba(255,204,0,0.08));
    color: var(--accent);
    border-color: rgba(255,204,0,0.25);
  }
  
  /* Program grid */
  .program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }
  
  /* Program card */
  .program-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 260ms cubic-bezier(.2,.9,.3,1), box-shadow 260ms ease;
    cursor: pointer;
  }
  
  /* poster */
  .program-card .poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
  }
  
  /* overlay (title + badge) */
  .program-card .meta {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }
  
  .program-card .meta .title {
    background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    max-width: 75%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  
  /* category badge */
  .program-card .badge-cat {
    background: rgba(0,0,0,0.55);
    color: var(--accent);
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 0.82rem;
    border: 1px solid rgba(255,204,0,0.08);
  }
  
  /* hover */
  .program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  }
  .program-card:hover .poster {
    transform: scale(1.06);
  }
  
  /* small info under poster */
  .program-info {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .program-info .time {
    color: var(--muted-2);
    font-size: 0.9rem;
  }
  
  /* colored tags by category */
  .badge-cat.movies { color: #ffd6a6; }
  .badge-cat.sports  { color: #a6d8ff; }
  .badge-cat.kids    { color: #ffd0ff; }
  .badge-cat.gospel  { color: #d6ffd6; }
  .badge-cat.news    { color: #ffb3b3; }
  
  /* Load more button */
  #loadMoreBtn {
    border-radius: 999px;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(255,255,255,0.06);
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .recorded-hero { height: 260px; padding: 2rem 0; }
    .recorded-hero h1 { font-size: 2rem; }
    .program-card .poster { height: 220px; }
  }
  
  /* subtle appear animation */
  .program-card { opacity: 0; transform-origin: center bottom; }
  .program-card.show { opacity: 1; transform: none; transition: opacity 320ms ease, transform 320ms ease; }
  




  /* Header */
  .header {
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
  }
  
  .header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .back-link {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
  }
  .back-link:hover {
    color: #fbbf24;
  }
  
  /* Hero Section */
  .watch-hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    padding: 2rem;
  }
  
  .watch-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  }
  
  .watch-hero .content {
    position: relative;
    max-width: 700px;
    z-index: 2;
    margin-bottom: 15rem;
  }
  
  .watch-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .watch-hero .meta {
    color: #ccc;
    margin-bottom: 0.5rem;
  }
  
  .watch-hero .description {
    color: #ddd;
    margin: 1rem 0 2rem;
    line-height: 1.6;
  }
  
  .buttons {
    display: flex;
    gap: 1rem;
  }
  
  .btn {
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s;
  }
  
  .btn.watch {
    background-color: #fbbf24;
    color: #000;
  }
  
  .btn.watch:hover {
    background-color: #facc15;
  }
  
  .btn.back {
    background-color: #333;
    color: #fff;
  }
  
  .btn.back:hover {
    background-color: #555;
  }
  
  /* Related Section */
  .related {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-top: -200px;
    margin-bottom: 114px;
  }
  
  .related h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 5%;
    z-index: 99;
    position: relative;
  }
  
  .videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .video-card:hover {
    transform: scale(1.05);
  }
  
  .video-card:hover img {
    transform: scale(1.1);
  }
  
  .video-card .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  }
  
  

  /* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.video-modal.active {
  display: flex;
}

.video-content {
  position: relative;
  max-width: 90%;
  width: 1000px;
  max-height: 570px;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.video-content video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 10;
}
.close-btn:hover {
  transform: scale(1.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.access-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
}

.popup-box h3 {
  margin-bottom: 1rem;
}

.popup-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.popup-actions .btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.btn-primary { background-color: #007bff; }
.btn-success { background-color: #28a745; }
.btn-primary:hover, .btn-success:hover { opacity: 0.8; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


.language-switcher {
    position: relative;
    width: 40px;
    cursor: pointer;
}

.selected-lang img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.lang-dropdown {
    list-style: none;
    padding: 5px 0;
    margin: 0;
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 9999;
}

.lang-dropdown li {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-dropdown li:hover {
    background: #f3f3f3;
}

    /* Hide skiptranslate wrapper and banner iframe */
    body > .skiptranslate {
      display: none !important;
      visibility: hidden !important;
    }

    iframe.goog-te-banner-frame,
    .goog-te-banner-frame.skiptranslate {
      display: none !important;
      visibility: hidden !important;
    }

    /* Prevent body from being shifted down */
    body {
      top: 0 !important;
      position: relative !important;
    }





    /* ——————————————
   TEAM SECTION
—————————————— */
.team-section {
  padding: 100px 0;
  background: #050505;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 42px;
  font-weight: 700;
  text-shadow: 0 0 20px #00f2ff;
}

.team-header p {
  font-size: 18px;
  color: #d1d1d1;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  padding: 10px;
}

/* Team Card */
.team-card {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.5);
}

/* Profile Image */
.team-img {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00eaff;
  box-shadow: 0 0 20px #00eaff;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text styling */
.team-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-role {
  font-size: 15px;
  color: #00eaff;
  margin-bottom: 15px;
  font-weight: 500;
}

.team-bio {
  font-size: 14px;
  color: #bfbfbf;
}

/* Fade Animation */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}


.vote-section {
  padding: 100px 0;
  background: #050505;
  color: white;
}

.vote-header {
  text-align: center;
  margin-bottom: 50px;
}

.vote-header h2 {
  font-size: 38px;
  font-weight: 700;
  text-shadow: 0 0 15px #00eaff;
}

.vote-header p {
  color: #bfbfbf;
  font-size: 16px;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.vote-card {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0 25px rgba(0,255,255,0.15);
}

.vote-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(0,255,255,0.4);
}

.vote-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #00eaff;
}

.vote-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vote-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}

.vote-count {
  color: #00eaff;
  font-size: 15px;
  margin-bottom: 15px;
}

.vote-btn {
  background: #00eaff;
  border: none;
  color: black;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.vote-btn:hover {
  background: #00ffaa;
}




/* ---------------------------------- */
/* BACKGROUND – Hollywood Premium     */
/* ---------------------------------- */
.contestant-royal {
  min-height: 100vh;
  padding: 80px 0;
  background: radial-gradient(circle at center, #0a0a0a, #000000);
  position: relative;
  overflow: hidden;
}

/* Golden animated rays */
.contestant-royal::before {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background: conic-gradient(
      from 0deg, 
      rgba(255,199,0,0.1), 
      rgba(255,0,80,0.06),
      rgba(255,199,0,0.1)
  );
  animation: spinRays 14s linear infinite;
  filter: blur(120px);
}
@keyframes spinRays {
  to { transform: rotate(360deg); }
}

/* Dust particles */
.contestant-royal::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: url("https://i.imgur.com/oeN7sJg.png");
  opacity: 0.12;
  animation: slowFloat 45s linear infinite;
}
@keyframes slowFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-500px); }
}


/* ---------------------------------- */
/* CENTER WRAPPER                     */
/* ---------------------------------- */
.royal-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}


/* ---------------------------------- */
/* ROYAL AURA (Big glowing ring)      */
/* ---------------------------------- */
.royal-aura {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,50,0.22), transparent 60%);
  top: 30px;
  filter: blur(60px);
  animation: auraPulse 6s ease-in-out infinite;
}
@keyframes auraPulse {
  0%,100% { opacity: .65; transform: scale(1); }
  50% { opacity: .95; transform: scale(1.25); }
}


/* ---------------------------------- */
/* ROYAL CARD – 3D PARALLAX           */
/* ---------------------------------- */
.royal-card {
  max-width: 720px;
  width: 100%;
  padding: 50px;
  border-radius: 35px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  box-shadow:
      0 0 50px rgba(255,199,0,0.25),
      inset 0 0 20px rgba(255,255,255,0.06);
  text-align: center;

  transition: transform 0.2s ease;
  transform-style: preserve-3d;

  animation: fadeRise 1.2s ease forwards;
  opacity: 0;
}
@keyframes fadeRise {
  to { opacity: 1; transform: translateY(0); }
}


/* ---------------------------------- */
/* PHOTO – with gold rim light        */
/* ---------------------------------- */
.royal-image img {
  width: 360px;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;

  box-shadow:
      0 0 35px rgba(255,199,0,0.45),
      0 0 75px rgba(255,199,0,0.15);

  transition: transform 0.4s ease;
}

.royal-card:hover .royal-image img {
  transform: scale(1.05);
}


/* ---------------------------------- */
/* NAME                               */
/* ---------------------------------- */
.royal-name {
  margin-top: 30px;
  font-size: 52px;
  font-weight: 800;
  color: #ffd800;
  text-shadow: 0 0 25px rgba(255,199,0,0.5);
}


/* ---------------------------------- */
/* BIO                                */
/* ---------------------------------- */
.royal-bio {
  margin-top: 15px;
  font-size: 18px;
  color: #e6e6e6;
  line-height: 1.75;
}


/* ---------------------------------- */
/* VOTING BOX – golden premium        */
/* ---------------------------------- */
.royal-votes {
  margin: 25px auto;
  background: rgba(255,199,0,0.10);
  padding: 18px 40px;
  border: 2px solid rgba(255,199,0,0.35);
  border-radius: 20px;
  width: fit-content;

  box-shadow: 0 0 30px rgba(255,199,0,0.28);
}

.royal-votes label {
  font-size: 16px;
  opacity: 0.8;
  color: #fff;
}

.royal-votes h2 {
  margin-top: 6px;
  font-size: 38px;
  font-weight: 700;
  color: #ffd800;
}


/* ---------------------------------- */
/* CTA BUTTON – holographic button    */
/* ---------------------------------- */
.royal-cta {
  display: inline-block;
  padding: 18px 55px;
  border-radius: 50px;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  text-decoration: none;

  background: linear-gradient(135deg, #ffd800, #ff9f00, #ffcc00);
  box-shadow:
      0 0 30px rgba(255,199,0,0.65),
      inset 0 0 20px rgba(255,255,255,0.2);
  
  transition: .3s ease;
}

.royal-cta:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
      0 0 55px rgba(255,199,0,0.9),
      inset 0 0 25px rgba(255,255,255,0.25);
}