/* ==========================================================================
   VOC TV Channel Website Stylesheet
   Theme: Deep Space Violet, Premium Amber Gold, Glassmorphic Modernism
   ========================================================================== */

/* Variables and Tokens */
:root {
  --color-bg-deep: #0b0914;
  --color-bg-card: rgba(22, 19, 44, 0.55);
  --color-glass-surface: rgba(255, 255, 255, 0.025);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  --color-glass-border-hover: rgba(255, 255, 255, 0.18);
  
  --color-primary: #8a2be2;      /* Neon Violet */
  --color-primary-glow: rgba(138, 43, 226, 0.4);
  --color-accent-gold: #ffb703;  /* Amber Gold */
  --color-accent-gold-glow: rgba(255, 183, 3, 0.4);
  --color-cyan-glow: #00f5d4;    /* Live Cyan */
  --color-red-live: #ef476f;     /* ON AIR Red */
  
  --color-text-main: #f5f4fa;
  --color-text-muted: #9f9cb5;
  --color-text-dim: #6c6985;
  
  --font-family-head: 'Outfit', sans-serif;
  --font-family-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  font-family: var(--font-family-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(at 10% 20%, rgba(138, 43, 226, 0.08) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(255, 183, 3, 0.04) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-head);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

.text-gold { color: var(--color-accent-gold) !important; }
.text-white { color: #ffffff !important; }
.text-dim { color: var(--color-text-dim) !important; }
.font-semibold { font-weight: 600; }
.font-red { color: var(--color-red-live) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }

/* Grid Layout System */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
.col-8 { grid-column: span 8; }
.col-7 { grid-column: span 7; }
.col-5 { grid-column: span 5; }
.col-4 { grid-column: span 4; }

/* Layout Containers */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Glassmorphic Components */
.glass-panel {
  background: var(--color-bg-card);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: var(--color-glass-border-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family-head);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #a238ff);
  color: #fff;
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Section Header Styles */
.section-header {
  margin-bottom: 2.5rem;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.pre-title {
  font-family: var(--font-family-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-title-sm {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.title-underline {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-gold));
  margin: 1rem auto 0 auto;
  border-radius: 2px;
}

.title-underline-left {
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-gold));
  margin: 1rem 0 0 0;
  border-radius: 2px;
}

/* Floating Header / Navbar Styles */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 9, 20, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.logo-icon-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  font-size: 1.2rem;
  color: #fff;
  z-index: 2;
}

.logo-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.5;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-family-head);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
}

.logo-sub {
  font-family: var(--font-family-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent-gold);
  margin-top: -3px;
}

/* Nav Links */
.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
}

.nav-link i {
  font-size: 0.85rem;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: var(--color-accent-gold);
  border-bottom: 2px solid var(--color-accent-gold);
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
}

/* Live Header Badge */
.live-indicator-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 71, 111, 0.1);
  border: 1px solid rgba(239, 71, 111, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.live-indicator-wrapper:hover {
  background: rgba(239, 71, 111, 0.25);
  box-shadow: 0 0 10px rgba(239, 71, 111, 0.3);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-red-live);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-red-live);
  animation: pulse-red 1.5s infinite;
}

.live-label {
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-red-live);
  letter-spacing: 0.05em;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  transition: var(--transition-fast);
}

/* Main Content Area */
#content-area {
  padding-top: 72px; /* Navbar height compensation */
  min-height: calc(100vh - 72px - 220px); /* Fill space between nav and footer */
}

/* Tab Switch Animations */
.tab-content {
  display: none;
  animation: tabFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-content.active {
  display: block;
}

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

/* ==========================================================================
   TAB 1: HOME PAGE STYLES
   ========================================================================== */

/* Wallpaper Hero Carousel */
.hero-carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background-color: #05040a;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(11, 9, 20, 0.2), rgba(11, 9, 20, 0.85) 90%);
}

.carousel-caption {
  max-width: 650px;
  padding: 0 4rem;
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.carousel-slide.active .carousel-caption {
  transform: translateY(0);
  opacity: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(138, 43, 226, 0.2);
  border: 1px solid rgba(138, 43, 226, 0.4);
  color: var(--color-primary);
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Slide Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.indicator {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.indicator.active {
  background: var(--color-accent-gold);
  box-shadow: 0 0 8px var(--color-accent-gold-glow);
}

/* Carousel Controls */
.carousel-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(11, 9, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-ctrl:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.carousel-ctrl.prev { left: 20px; }
.carousel-ctrl.next { right: 20px; }

/* Ticker Bar */
.ticker-bar {
  display: flex;
  background: #110e20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.8rem 1.5rem;
  align-items: center;
  overflow: hidden;
}

.ticker-title {
  font-family: var(--font-family-head);
  font-weight: 700;
  color: var(--color-accent-gold);
  font-size: 0.85rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.5rem;
  z-index: 2;
}

.ticker-content {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.ticker-scroll {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-animation 30s linear infinite;
  gap: 2rem;
}

.ticker-item {
  font-size: 0.85rem;
  color: var(--color-text-main);
}

@keyframes ticker-animation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Mission / Vision Cards styling */
.border-gradient-section {
  position: relative;
}

.glow-card {
  position: relative;
  overflow: hidden;
}

.card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.glow-card:hover .card-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.card-icon {
  font-size: 1.8rem;
}

.font-gold { color: var(--color-accent-gold); }
.font-violet { color: var(--color-primary); }

.gradient-text-gold {
  background: linear-gradient(135deg, #ffe066, var(--color-accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #cc80ff, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-gold), transparent);
}

.vision-accent {
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

/* Channel Stats / highlights */
.channel-highlights {
  text-align: center;
}

.highlight-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}

.stats-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-family-head);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--color-accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Program Card Grid */
.program-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.prog-time {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(11, 9, 20, 0.75);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-accent-gold);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.program-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.program-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   TAB 2: MEDIA / VIDEO STREAM STYLES
   ========================================================================== */

.media-layout {
  margin-top: 1rem;
}

.player-container {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#player-visualizer {
  width: 100%;
  height: 100%;
  background: #020108;
}

.player-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 4, 10, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition-fast);
}

.player-overlay:hover {
  background: rgba(5, 4, 10, 0.7);
}

.play-overlay-icon {
  font-size: 4rem;
  color: var(--color-accent-gold);
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 15px rgba(255, 183, 3, 0.4));
}

.player-overlay:hover .play-overlay-icon {
  transform: scale(1.1);
  color: #fff;
  filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.6));
}

.overlay-text {
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}

.player-status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(11, 9, 20, 0.8);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 5;
}

.pulse-red-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-text-dim);
  border-radius: 50%;
}

.video-player-wrapper.streaming .pulse-red-dot {
  background-color: var(--color-red-live);
  box-shadow: 0 0 6px var(--color-red-live);
  animation: pulse-red 1.2s infinite;
}

/* Custom Controls Bar */
.custom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 80%, transparent 100%);
  padding: 1.5rem 1rem 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(5px);
  transition: var(--transition-fast);
  z-index: 9;
}

.video-player-wrapper:hover .custom-controls,
.video-player-wrapper.streaming:hover .custom-controls {
  opacity: 1;
  transform: translateY(0);
}

.progress-bar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
}

.controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-controls, .right-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.control-btn:hover {
  color: var(--color-accent-gold);
}

.volume-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volume-slider {
  width: 60px;
  height: 3px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.time-display {
  font-family: var(--font-family-head);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.player-info-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.video-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.25rem 0 0.75rem 0;
}

.video-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

/* Playlist column */
.playlist-container {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.playlist-title {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.media-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.25rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1rem;
}

.media-tab-btn {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 0.25rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.media-tab-btn.active, .media-tab-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.playlist-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  max-height: 380px;
  padding-right: 0.25rem;
}

/* Custom Scrollbar for playlist */
.playlist-items::-webkit-scrollbar {
  width: 4px;
}
.playlist-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.playlist-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: var(--transition-fast);
}

.playlist-card:hover, .playlist-card.active {
  background: rgba(138, 43, 226, 0.08);
  border-color: rgba(138, 43, 226, 0.2);
}

.playlist-card.active {
  box-shadow: inset 3px 0 0 var(--color-accent-gold);
}

.playlist-thumb {
  width: 90px;
  height: 55px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}

.playlist-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.3rem;
  border-radius: 2px;
}

.playlist-badge.live {
  background: var(--color-red-live);
  color: #fff;
}

.playlist-badge.vids {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.playlist-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.playlist-details h5 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.playlist-details p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* ==========================================================================
   TAB 3: PRAYER REQUEST STYLES
   ========================================================================== */

.panel-header-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Forms Input Styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-input, .form-textarea {
  background: rgba(11, 9, 20, 0.5);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--border-radius-sm);
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: var(--font-family-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.15);
  background: rgba(11, 9, 20, 0.8);
}

.form-group-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-group-checkbox label {
  cursor: pointer;
  user-select: none;
}

/* Prayer Wall Styling */
.wall-intro {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0.5rem 0 1rem 0;
}

.prayer-wall-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 440px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.prayer-wall-list::-webkit-scrollbar {
  width: 4px;
}
.prayer-wall-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.prayer-wall-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.prayer-wall-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.wall-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wall-card-author {
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.wall-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
}

.wall-category.healing { background: rgba(0, 245, 212, 0.15); color: var(--color-cyan-glow); }
.wall-category.guidance { background: rgba(138, 43, 226, 0.15); color: #c48eff; }
.wall-category.family { background: rgba(255, 183, 3, 0.15); color: var(--color-accent-gold); }
.wall-category.financial { background: rgba(76, 201, 240, 0.15); color: #4cc9f0; }
.wall-category.thanksgiving { background: rgba(74, 201, 155, 0.15); color: #4ac99b; }
.wall-category.other { background: rgba(255, 255, 255, 0.15); color: #eee; }

.wall-card-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-style: italic;
}

.wall-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 0.5rem;
}

.wall-time {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.amen-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.amen-btn:hover {
  background: rgba(239, 71, 111, 0.1);
  color: var(--color-red-live);
  border-color: rgba(239, 71, 111, 0.2);
}

.amen-btn.active {
  background: var(--color-red-live);
  color: #fff;
  border-color: var(--color-red-live);
  animation: bounce 0.3s ease;
}

/* ==========================================================================
   TAB 4: ADVISORY BOARD STYLES
   ========================================================================== */

.board-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.member-img-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  background: #110e20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-svg {
  width: 100%;
  height: 100%;
  transition: var(--transition-smooth);
}

.board-card:hover .member-svg {
  transform: scale(1.05);
}

.member-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-primary);
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.member-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.member-title {
  font-family: var(--font-family-head);
  color: var(--color-accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.member-bio {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.member-socials {
  display: flex;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.member-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.member-socials a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ==========================================================================
   TAB 5: GALLERY STYLES
   ========================================================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(138, 43, 226, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  padding: 0.5rem;
  cursor: pointer;
}

.gallery-img-wrapper {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--border-radius-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 9, 20, 0.9) 0%, rgba(11, 9, 20, 0.3) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transform: scale(0.98);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
  transform: scale(1);
}

.zoom-icon {
  font-size: 1.5rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.5rem;
  align-self: flex-start;
  transform: translateY(10px);
  transition: var(--transition-smooth) 0.1s;
}

.gallery-item:hover .zoom-icon {
  transform: translateY(0);
}

.img-title {
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transform: translateY(10px);
  transition: var(--transition-smooth) 0.15s;
}

.gallery-item:hover .img-title {
  transform: translateY(0);
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 4, 10, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-accent-gold);
}

.lightbox-content-wrap {
  max-width: 900px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption {
  font-family: var(--font-family-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: center;
}

/* ==========================================================================
   TAB 6: CONTACT STYLES
   ========================================================================== */

.contact-details-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.c-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: rgba(138, 43, 226, 0.08);
  border: 1px solid rgba(138, 43, 226, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.c-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.text-sm {
  font-size: 0.75rem !important;
  margin-top: 0.25rem;
}

.social-reach-section h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.social-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-pill {
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.social-pill.fb { background: rgba(24, 119, 242, 0.15); color: #1877f2; border: 1px solid rgba(24, 119, 242, 0.2); }
.social-pill.yt { background: rgba(255, 0, 0, 0.15); color: #ff0000; border: 1px solid rgba(255, 0, 0, 0.2); }
.social-pill.tw { background: rgba(29, 161, 242, 0.15); color: #1da1f2; border: 1px solid rgba(29, 161, 242, 0.2); }
.social-pill.ig { background: rgba(193, 53, 132, 0.15); color: #c13584; border: 1px solid rgba(193, 53, 132, 0.2); }

.social-pill:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Custom styled Map placeholder */
.map-wrapper {
  height: 250px;
  background-image: linear-gradient(rgba(11, 9, 20, 0.85), rgba(11, 9, 20, 0.85)), url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-overlay {
  text-align: center;
  z-index: 2;
}

.map-logo-icon {
  font-size: 2.2rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px var(--color-accent-gold-glow));
}

.map-overlay h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.map-overlay p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   TOAST / FOOTER / ANIMATION STYLES
   ========================================================================== */

/* Toast notification popup */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1c1936;
  border: 1px solid var(--color-cyan-glow);
  box-shadow: 0 10px 30px rgba(0, 245, 212, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.25rem;
  color: var(--color-cyan-glow);
}

.toast-msg {
  font-family: var(--font-family-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
}

/* Footer Section */
#main-footer {
  background: #06050b;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 4rem 0 2rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand-desc {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links h5, .footer-info h5 {
  font-family: var(--font-family-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-links a:hover {
  color: var(--color-accent-gold);
  padding-left: 3px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 201, 155, 0.08);
  border: 1px solid rgba(74, 201, 155, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-dot.green {
  background-color: #4ac99b;
  box-shadow: 0 0 6px #4ac99b;
}

.status-txt {
  font-family: var(--font-family-head);
  font-weight: 700;
  font-size: 0.7rem;
  color: #4ac99b;
  letter-spacing: 0.02em;
}

.copyright-text {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  line-height: 1.5;
}

/* Custom Keyframe Animations */
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { opacity: 0.2; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes pulse-red {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 71, 111, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 71, 111, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 71, 111, 0); }
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 992px) {
  .grid-12 {
    grid-template-columns: 1fr;
  }
  .col-8, .col-7, .col-5, .col-4 {
    grid-column: span 12;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-carousel {
    height: 480px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .playlist-items {
    max-height: 280px;
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  #navbar {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 72px);
    background: rgba(11, 9, 20, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    padding: 2rem;
  }
  
  #navbar.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }
  
  .hero-carousel {
    height: 400px;
  }
  
  .carousel-caption {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .live-indicator-wrapper {
    display: none; /* Hide in header on small mobile screens */
  }
  
  .mobile-nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}
