/* ========================================
   FARAJA YANGU TV — Premium TV Experience
   Brand: Navy #1B4B5A + Orange #C9781F
   ======================================== */

:root {
  --navy: #1B4B5A;
  --navy-dark: #091E24;
  --navy-mid: #0F2E38;
  --navy-light: #2A6375;
  --orange: #C9781F;
  --orange-dark: #A86216;
  --orange-glow: rgba(201, 120, 31, 0.5);
  --orange-soft: rgba(201, 120, 31, 0.15);
  --black: #060809;
  --surface: #0D1113;
  --surface-2: #111719;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-hover: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text: #EEEEEE;
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-dim: rgba(255, 255, 255, 0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease-out);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(ellipse at 50% 0%, var(--navy-mid) 0%, var(--black) 60%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--orange); color: white; }

/* ===== PARALLAX BACKGROUND ===== */
.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.parallax-layer {
  position: absolute;
  inset: -20%;
  will-change: transform;
}

.bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/bg.jpg') center/cover no-repeat;
  filter: brightness(0.55) saturate(0.9);
  transform: scale(1.15);
}

.bg-darken {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 20%, rgba(27, 75, 90, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 70% 70%, rgba(201, 120, 31, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6,8,9,0.5) 0%, rgba(6,8,9,0.15) 40%, rgba(6,8,9,0.6) 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 120, 31, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 120, 31, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 70%);
}

@media (max-width: 768px) {
  .bg-grid { background-size: 40px 40px; }
  .bg-image { transform: scale(1); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201, 120, 31, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201, 120, 31, 0.6); }

/* ===== CANVAS PARTICLES ===== */
#particlesCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ===== ARABIC BG ===== */
.hero-arabic {
  font-family: 'Amiri', serif;
  font-size: clamp(32px, 5vw, 64px);
  color: rgba(201, 120, 31, 0.7);
  line-height: 1.2;
  margin-bottom: 8px;
  pointer-events: none;
  user-select: none;
  display: block;
  width: 100%;
  animation: fadeArabic 2s ease-in-out infinite alternate;
}

@keyframes fadeArabic {
  0% { opacity: 0.6; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(-4px); }
}

/* ===== SECTIONS ===== */
.section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  z-index: 1;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding: 6px 0;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(6, 8, 9, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all 0.4s var(--ease-out);
}

.header.scrolled {
  background: rgba(6, 8, 9, 0.95);
  height: 68px;

}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}

.logo-container:hover { transform: translateY(-1px); }

.logo {
  display: none;
}

.header-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  background: white;
  border-radius: 14px;
  padding: 5px;
  border: 1px solid rgba(0,0,0,0.05);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand-top { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; }
.logo-brand-bottom { font-size: 19px; font-weight: 800; color: white; letter-spacing: 1px; }

/* Navigation */
.main-menu { display: flex; align-items: center; gap: 36px; }
.menu-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.menu-item:hover { color: white; }

.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.menu-item:hover::after { width: 70%; }
.menu-item.active { color: white; }
.menu-item.active::after { width: 70%; }

/* Live Button */
.live-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 40, 40, 0.08);
  border: 1px solid rgba(255, 40, 40, 0.2);
  color: #ff4444;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.live-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,40,40,0.05), transparent);
  animation: shimmer 2s infinite;
}

.live-button:hover {
  background: rgba(255, 40, 40, 0.15);
  border-color: rgba(255, 40, 40, 0.4);

  transform: translateY(-1px);
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4444;
  animation: pulse-dot 1.5s ease-in-out infinite;

}

.live-dot.small { width: 6px; height: 6px; }

/* ===== Notification Bell ===== */
.notif-wrap {
  position: relative;
  margin-left: 12px;
}

.notif-bell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(201, 120, 31, 0.08);
  border: 1px solid rgba(201, 120, 31, 0.25);
  border-radius: 50%;
  color: #C9781F;
  cursor: pointer;
  transition: all var(--transition);
}

.notif-bell:hover {
  background: rgba(201, 120, 31, 0.18);
  border-color: rgba(201, 120, 31, 0.5);
  transform: translateY(-1px);
}

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: #E53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(229, 57, 53, 0.45);
}

.notif-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 350px;
  max-width: calc(100vw - 24px);
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  z-index: 9999;
  overflow: hidden;
}

.notif-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.notif-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

.notif-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
}

.notif-close:hover { color: #fff; }

.notif-subscribe-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(201, 120, 31, 0.05);
}

.notif-sub-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.notif-sub-info strong {
  font-size: 12.5px;
  color: #fff;
  font-weight: 600;
}

.notif-sub-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.notif-subscribe-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #C9781F, #FF7A00);
  border: none;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.notif-subscribe-btn:hover { filter: brightness(1.12); }

.notif-subscribe-btn.subscribed {
  background: rgba(76, 175, 80, 0.15);
  color: #66bb6a;
  border: 1px solid rgba(76, 175, 80, 0.35);
  cursor: default;
}

.notif-subscribe-btn.subscribed:hover { filter: none; }

.notif-list {
  max-height: 400px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.notif-list::-webkit-scrollbar { width: 5px; }
.notif-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 3px; }

.notif-loading,
.notif-empty {
  padding: 26px 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.notif-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.18s ease;
  align-items: center;
}

.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: rgba(255, 255, 255, 0.04); }

.notif-item.unread { background: rgba(201, 120, 31, 0.06); }
.notif-item.unread:hover { background: rgba(201, 120, 31, 0.1); }

.notif-thumb {
  width: 58px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #1e1e1e;
}

.notif-item-body {
  flex: 1;
  min-width: 0;
}

.notif-item-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-item-meta {
  display: flex;
  gap: 8px;
  margin-top: 3px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.38);
}

.notif-item-meta .cat { color: #C9781F; font-weight: 600; }

.notif-announcement {
  margin: 10px 10px 4px;
  padding: 11px 13px;
  border-radius: 10px;
  border-left: 3px solid #FF7A00;
  background: rgba(255, 122, 0, 0.08);
}

.notif-announcement-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #FF9A33;
  margin-bottom: 3px;
}

.notif-announcement-msg {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.notif-announcement-img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.notif-announcement.unread { border-left-color: #FFD166; background: rgba(255, 122, 0, 0.14); }
.notif-announcement.unread .notif-announcement-title::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-radius: 50%;
  background: #FFD166;
  vertical-align: middle;
}

/* ===== Kufuta taarifa (× kila kimoja + "Futa zote") ===== */
.notif-panel-head-actions,
.notif-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notif-clearall {
  background: none;
  border: none;
  padding: 2px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: color 0.2s ease;
}
.notif-clearall:hover { color: #FF7A00; }
.notif-item { position: relative; }
.notif-del {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.18s ease, background 0.18s ease, color 0.18s ease;
  z-index: 2;
}
.notif-item:hover .notif-del,
.notif-announcement:hover > .notif-del { opacity: 1; }
.notif-del:hover { background: rgba(255, 70, 70, 0.25); color: #ff8080; }
.notif-announcement { position: relative; }
.notif-announcement .notif-del { top: 8px; right: 8px; opacity: 0.55; }
@media (hover: none) {
  .notif-del { opacity: 0.7; } /* touch screens:iona daima */
}

/* ===== Announcement toast pop-up ===== */
.ann-toast {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 11000;
  max-width: 340px;
  padding: 16px 18px 14px;
  border-radius: 14px;
  background: rgba(14, 16, 19, 0.97);
  border: 1px solid rgba(255, 122, 0, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.ann-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.ann-toast-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.ann-toast-title {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #FF9A33;
  margin-bottom: 5px;
  padding-right: 20px;
}
.ann-toast-msg {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  max-height: 120px;
  overflow-y: auto;
}
.ann-toast-actions {
  display: flex;
  gap: 8px;
  margin-top: 11px;
}
.ann-toast-link {
  background: #C9781F;
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 11.5px;
  cursor: pointer;
  display: none;
}
.ann-toast-ok {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 11.5px;
  cursor: pointer;
}
@media (max-width: 480px) {
  .ann-toast { left: 12px; right: 12px; max-width: none; bottom: 14px; }
}

@media (max-width: 991px) {
  .notif-bell { width: 38px; height: 38px; }
  .notif-panel {
    position: fixed;
    top: 74px;
    right: 12px;
  }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  gap: 5px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: white;
  transition: 0.3s var(--ease-out);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); }

/* ===== HERO SECTION ===== */
.hero-section {
  background: transparent;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 48px;
  padding-top: 160px;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,8,9,0.8) 0%, rgba(6,8,9,0.5) 50%, rgba(6,8,9,0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(201, 120, 31, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(27, 75, 90, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-soft);
  border: 1px solid rgba(201, 120, 31, 0.2);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 36px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero-title-line { display: block; }

.hero-title .highlight {
  background: linear-gradient(135deg, #f0a840 0%, var(--orange) 40%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s forwards;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.5s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 17px 36px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;

  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px);

}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: white;
  padding: 17px 36px;
  border-radius: 32px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 56px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.7s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -28px;
  top: 10%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange) 0%, #f0a840 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.5px; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 1.5px solid var(--text-dim);
  border-bottom: 1.5px solid var(--text-dim);
  transform: rotate(45deg);
  opacity: 0.4;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SHOWS / COVERFLOW ===== */
.shows-section {
  background: linear-gradient(180deg, rgba(6,8,9,0.75) 0%, rgba(6,8,9,0.35) 30%, rgba(6,8,9,0.8) 100%);
  flex-direction: column;
  padding-top: 110px;
}

.shows-section .section-header { margin-bottom: 40px; }

.coverflow-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  min-height: 620px;
}

.coverflow-container {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  position: relative;
}

.coverflow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  position: relative;
  width: 100%;
  height: 380px;
}

.coverflow-item {
  position: absolute;
  width: 340px;
  height: 340px;
  transition: all 0.7s var(--ease-bounce);
  cursor: pointer;
  user-select: none;
  will-change: transform, opacity;
}

.coverflow-item .cover {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);

  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  border: 1px solid var(--border);
  transition: border-color 0.4s;
}

.coverflow-item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s var(--ease-out), filter 0.6s;
  filter: brightness(0.85);
}

.coverflow-item:hover .cover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.cover-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(9, 30, 36, 0.9);
  backdrop-filter: blur(12px);
  color: white;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.coverflow-item .reflection {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 70%;
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleY(-1);
  opacity: 0.08;
  filter: blur(4px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
  overflow: hidden;
  pointer-events: none;
}

.coverflow-item.active .cover {
  border-color: rgba(201, 120, 31, 0.25);

}

.coverflow-item.active .cover img {
  filter: brightness(1);
}

/* Navigation */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass);
  border: 1px solid var(--border);
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  z-index: 200;
  font-family: inherit;
  font-weight: 300;
}

.nav-button:hover {
  background: var(--orange-soft);
  border-color: rgba(201, 120, 31, 0.3);
  transform: translateY(-50%) scale(1.1);

}

.nav-button.prev { left: clamp(20px, 8vw, 100px); }
.nav-button.next { right: clamp(20px, 8vw, 100px); }

/* Dots */
.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 200;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.dot.active {
  background: var(--orange);
  transform: scale(1.5);

}

/* Info */
.info {
  text-align: center;
  color: white;
  max-width: 620px;
  padding: 0 20px;
}

#current-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

#current-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.info-actions { margin-top: 4px; }

.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 28px;
  border: 1px solid rgba(201, 120, 31, 0.25);
  border-radius: 25px;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.info-btn:hover {
  background: var(--orange-soft);
  border-color: var(--orange);

}

/* Play/Pause */
.play-pause-button {
  position: absolute;
  bottom: 74px;
  right: clamp(20px, 8vw, 100px);
  background: var(--glass);
  border: 1px solid var(--border);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  z-index: 200;
  font-family: inherit;
}
.play-pause-button:hover {
  background: var(--glass-hover);
  transform: scale(1.1);
}

/* ===== SCHEDULE ===== */
.schedule-section {
  background: linear-gradient(180deg, rgba(6,8,9,0.8) 0%, rgba(6,8,9,0.4) 50%, rgba(6,8,9,0.85) 100%);
  flex-direction: column;
  padding-top: 110px;
}

.schedule-content { width: 100%; max-width: 1000px; }

.schedule-tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 6px;
  background: var(--glass);
  border-radius: 30px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.schedule-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.schedule-tab:hover { color: white; }

.schedule-tab.active {
  background: var(--orange);
  color: white;
  font-weight: 700;

}

.schedule-grid {
  display: grid;
  gap: 10px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  transition: all var(--transition);
}

.schedule-item:hover {
  background: var(--glass-hover);
  transform: translateX(6px);
  border-color: var(--border-hover);
}

.schedule-time {
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  min-width: 56px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}

.schedule-info { flex: 1; }

.schedule-show-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.schedule-show-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.schedule-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.schedule-badge.live-now {
  background: rgba(255,68,68,0.12);
  color: #ff4444;
  border: 1px solid rgba(255,68,68,0.2);
}
.schedule-badge.upcoming {
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(201, 120, 31, 0.2);
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(180deg, rgba(6,8,9,0.82) 0%, rgba(6,8,9,0.35) 50%, rgba(6,8,9,0.85) 100%);
  flex-direction: column;
  padding-top: 110px;
}

.about-content { width: 100%; max-width: 1100px; }

.about-glass {
  max-width: 800px;
  margin: 0 auto 50px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.about-logo {
  display: none;
}

.about-text-block { max-width: 650px; margin: 0 auto; }

.about-text-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
  text-align: center;
}

.about-text-block p:last-child { margin-bottom: 0; }

/* ===== PACKAGES + BOOKING ===== */
.packages-section {
  background: linear-gradient(180deg, rgba(6,8,9,0.88) 0%, rgba(6,8,9,0.5) 50%, rgba(6,8,9,0.9) 100%);
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 80px;
}

.packages-content { width: 100%; max-width: 1000px; }

.booking-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.booking-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.booking-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 120, 31, 0.3);

}

.booking-card.featured {
  border-color: rgba(201, 120, 31, 0.25);
  transform: scale(1.03);
  z-index: 1;
}

.booking-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.booking-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--orange), #c9602b);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.booking-card-top {
  padding: 32px 28px 0;
  flex: 1;
}

.booking-card-icon {
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--orange);
}

.booking-card-top h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.booking-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.package-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.package-total {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  margin-top: 6px;
  opacity: 0.8;
}

.package-note {
  font-size: 11px;
  color: var(--orange);
  font-style: italic;
  margin: 0 0 12px;
  opacity: 0.8;
}

.booking-card-bottom {
  padding: 24px 28px 32px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.booking-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.price-amount {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #f0a840, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.price-down {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .booking-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .booking-card.featured { transform: none; }
  .booking-card.featured:hover { transform: translateY(-8px); }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.about-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  opacity: 0;
  transition: opacity var(--transition);
}

.about-card:hover::before { opacity: 1; }

.about-card:hover {
  background: var(--glass-hover);
  transform: translateY(-6px);
  border-color: var(--border-hover);

}

.about-icon {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);

}

.about-icon svg { width: 28px; height: 28px; }

.about-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.about-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: linear-gradient(160deg, rgba(27,75,90,0.1) 0%, rgba(201,120,31,0.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.stat-block { display: flex; flex-direction: column; gap: 6px; }

.stat-num {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, #f0a840 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== DOWNLOAD APP ===== */
.download-section {
  background: linear-gradient(180deg, rgba(6,8,9,0.65) 0%, rgba(6,8,9,0.3) 50%, rgba(6,8,9,0.85) 100%);
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(201,120,31,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.download-visual { display: flex; justify-content: center; }

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0d0d0d 100%);
  border-radius: 40px;
  border: 3px solid rgba(255,255,255,0.08);
  padding: 14px;

  position: relative;
  overflow: hidden;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.download-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.download-info .section-label { margin-bottom: 0; }

.download-info h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
}

.download-info > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}

.check-icon { width: 22px; height: 22px; flex-shrink: 0; }

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 17px 36px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
  width: fit-content;

}

.btn-playstore:hover {
  transform: translateY(-3px);

}

.btn-playstore svg { width: 22px; height: 22px; }

/* ===== CONTACT ===== */
.contact-section {
  background: rgba(6,8,9,0.85);
  flex-direction: column;
  padding-top: 110px;
}

.contact-content { width: 100%; max-width: 1100px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  background: var(--glass-hover);
  transform: translateX(6px);
  border-color: var(--border-hover);

}

.contact-card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; fill: white; }

.phone-icon { background: linear-gradient(145deg, var(--navy), var(--navy-light)); }
.email-icon { background: linear-gradient(145deg, var(--orange-dark), var(--orange)); }
.whatsapp-icon { background: linear-gradient(145deg, #25D366, #128C7E); }

.contact-info-card h4 {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-info-card a:hover { color: var(--orange); }

/* Form */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  text-align: center;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.payment-notice {
  margin: 16px 0;
  padding: 12px 16px;
  background: rgba(201, 120, 31, 0.1);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* Select element */
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-group select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.05);

}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.05);

}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.15); }

.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  border: none;
  padding: 17px 40px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 32px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  width: 100%;

}

.submit-btn:hover {
  transform: translateY(-2px);

}

.submit-btn svg { width: 18px; height: 18px; }

/* Social */
.social-bar {
  margin-top: 70px;
  text-align: center;
}

.social-bar h4 {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.social-links { display: flex; gap: 14px; justify-content: center; }

.social-link {
  width: 50px; height: 50px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-muted);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-4px);

}

.social-link svg { width: 20px; height: 20px; fill: currentColor; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(4, 6, 8, 0.95);
  border-top: 1px solid var(--border);
  padding: 70px 40px 30px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 11px;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: var(--text-dim); }

.footer-tagline {
  font-family: 'Amiri', serif;
  font-size: 16px !important;
  color: rgba(201, 120, 31, 0.3) !important;
  letter-spacing: 1px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: all var(--transition);
  z-index: 999;

}

.scroll-to-top.visible { opacity: 1; transform: translateY(0); }
.scroll-to-top:hover { transform: translateY(-5px); }

/* ===== LIVESTREAM OVERLAY ===== */
.livestream-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(16px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.livestream-overlay.active { display: flex; }

.livestream-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: modalIn 0.4s var(--ease-bounce);

}

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

.livestream-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 32px;
  cursor: pointer;
  transition: color var(--transition);
  font-family: inherit;
  line-height: 1;
}

.livestream-close:hover { color: white; }

.livestream-header { text-align: center; margin-bottom: 28px; }

.live-badge {
  display: inline-block;
  background: rgba(255,68,68,0.12);
  border: 1px solid rgba(255,68,68,0.2);
  color: #ff4444;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  animation: pulse-dot 2s ease-in-out infinite;
}

.live-badge.large { font-size: 12px; padding: 8px 22px; }
.livestream-header h2 { font-size: 26px; font-weight: 800; }

.player-placeholder {
  background: var(--black);
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.play-icon-large { width: 72px; height: 72px; z-index: 1; }

.player-placeholder p { font-size: 14px; color: var(--text-muted); z-index: 1; }

.pulse-ring {
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--orange-soft);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.livestream-info { margin-top: 24px; text-align: center; }
.livestream-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.livestream-info strong { color: white; }

/* ===== IMAGE LOADING ===== */
.image-loading {
  background: linear-gradient(45deg, var(--navy-dark), #15262d);
  position: relative;
}

.image-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,0.03);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-banner { grid-template-columns: repeat(2, 1fr); }
  .download-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .download-info { align-items: center; }
  .btn-playstore { width: 100%; justify-content: center; }
  .feature-checklist li { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .coverflow-item { width: 280px; height: 280px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .header { padding: 0 20px; height: 70px; }
  .header.scrolled { height: 60px; }

  .main-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,8,9,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
  }
  .main-menu.active { display: flex; }
  .menu-toggle { display: flex; }
  .live-button { display: none; }
  .logo-brand-top { display: none; }
  .logo-brand-bottom { font-size: 17px; }

  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .hero-stats { gap: 32px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat:not(:last-child)::after { right: -16px; }

  .coverflow-item { width: 220px; height: 220px; }
  .coverflow-container { height: 380px; }
  .coverflow { height: 260px; }
  .nav-button { width: 40px; height: 40px; font-size: 22px; }
  .nav-button.prev { left: 8px; }
  .nav-button.next { right: 8px; }
  .play-pause-button { bottom: 50px; right: 8px; width: 36px; height: 36px; }
  .dots-container { bottom: 10px; gap: 8px; }

  .stats-banner { gap: 20px; padding: 30px 20px; }
  .stat-num { font-size: 28px; }
  .about-glass { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .schedule-tabs { gap: 4px; }
  .schedule-tab { font-size: 11px; padding: 8px 12px; }

  .phone-mockup { width: 200px; height: 400px; }
  .phone-logo { font-size: 36px; }
  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 80px 16px; }
  .section-header h2 { font-size: 28px; }
  .hero-title { font-size: 28px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 10px; }

  .coverflow-item { width: 180px; height: 180px; }
  .coverflow-container { height: 300px; }
  .coverflow { height: 200px; }

  .contact-form { padding: 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .schedule-item { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===== SHARED VIDEO OVERLAY ===== */
.shared-video-modal {
  max-width: 480px !important;
}
.shared-video-loading,
.shared-video-error {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}
.shared-video-content {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.shared-video-thumb {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shared-video-info h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.shared-video-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 8px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shared-video-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.shared-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== UPDATES SECTION ===== */
.updates-section {
  flex-direction: column;
  background: linear-gradient(180deg, rgba(6,8,9,0.82) 0%, rgba(6,8,9,0.35) 50%, rgba(6,8,9,0.85) 100%);
}

/* ===== UPDATES CAROUSEL ===== */
.updates-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.updates-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 20px 0;
  flex: 1;
}

.updates-track::-webkit-scrollbar { display: none; }

.updates-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.updates-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.updates-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 20px;
}

.updates-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.updates-dots .dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ===== UPDATE CAROUSEL CARD ===== */
.update-card-carousel {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}

.update-card-carousel:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.update-card-carousel .card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.update-card-carousel .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.update-card-carousel:hover .card-img img {
  transform: scale(1.05);
}

.update-card-carousel .card-body {
  padding: 18px 20px 22px;
}

.update-card-carousel .card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.35;
}

.update-card-carousel .card-body p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-card-carousel .card-date {
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.update-card-carousel .card-date::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .updates-nav { display: none; }
  .update-card-carousel { min-width: 260px; max-width: 260px; }
  .updates-track { gap: 16px; }
}

/* ===== UPDATE DETAIL MODAL ===== */
.update-detail-modal {
  max-width: 560px !important;
}
.update-detail-img {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  overflow: hidden;
  margin-bottom: 16px;
}
.update-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.update-detail-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px 0;
}
.update-detail-date {
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.update-detail-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .updates-section { padding: 60px 0; }
}

/* ========================================
   MOBILE UI POLISH — content flows naturally,
   never pulled to one side; modals scroll.
   ======================================== */
@media (max-width: 768px) {
  .section { min-height: auto; padding: 70px 16px; }
  .hero-section { padding-top: 120px; gap: 32px; }
  .hero-arabic { font-size: 30px; }

  /* Modals: scrollable + full-width so long forms/books never overflow */
  .livestream-modal {
    padding: 28px 18px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 16px;
  }
  .shared-video-thumb { height: 200px; }
  .shared-video-modal { max-width: 92vw !important; }
  .update-detail-img { height: 180px; }
  .update-detail-modal { max-width: 92vw !important; }

  /* Cards: tighter but centered, never overflowing */
  .booking-card-top { padding: 24px 20px 0; }
  .booking-card-bottom { padding: 18px 20px 24px; }
  .update-card-carousel .card-img { height: 160px; }

  .contact-form { padding: 24px 18px; }
  .download-content { text-align: center; }
  .section-header { margin-bottom: 34px; }
  .section-header h2 { font-size: 30px; letter-spacing: -0.5px; }

  /* Hero actions stretch full width and stay centered */
  .hero-actions .btn-primary { width: 100%; justify-content: center; }

  /* Footer stacks evenly */
  .footer-inner { gap: 32px; }
  .footer { padding: 60px 20px 24px; }

  /* Updates track: snap cards near full width for comfortable swipe */
  .updates-carousel-wrapper { padding: 0 12px; }
  .updates-track { scroll-padding-left: 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 14px; }
  .section-header h2 { font-size: 26px; }
  .coverflow-item { width: 160px; height: 160px; }
  .coverflow-container { height: 280px; }
  .coverflow { height: 180px; }
  .nav-button { width: 34px; height: 34px; font-size: 18px; }
  .livestream-modal { padding: 24px 14px; }
  .form-row { gap: 12px; }
  .phone-mockup { width: 180px; height: 360px; }
  .scroll-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; }
}

/* ============================================================
   ALL VIDEOS BY CATEGORY — DYNAMIC SECTION (FARAAJA YANGU TV)
   Navy + Orange branding (same as the rest of the site)
   ============================================================ */
.videos-section { padding: 70px 0; }
.videos-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.videos-loading,
.videos-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 46px 0;
  font-size: 15px;
}

.video-category-block {
  position: relative;
  margin: 0 0 42px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.video-cat-banner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.10;
  filter: blur(2px);
  transform: scale(1.05);
  pointer-events: none;
}
.video-cat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-cat-head {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 4px 0 10px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.video-cat-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease-out);
}
.video-cat-head:hover h3 {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.video-cat-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-dark);
  background: var(--orange);
  border-radius: 999px;
  padding: 2px 10px;
  white-space: nowrap;
}
.video-cat-toggle {
  margin-left: auto;
  color: var(--orange);
  font-size: 12px;
  transition: transform 0.25s var(--ease-out);
}
.video-cat-head[aria-expanded="true"] .video-cat-toggle { transform: rotate(180deg); }

.video-cat-seeall { text-align: center; margin: 6px 0 4px; }
.video-seeall-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  background: transparent;
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.video-seeall-btn:hover { background: var(--orange); color: #fff; }
[hidden] { display: none !important; }

.video-subcat { position: relative; margin-bottom: 26px; }
.video-subcat:last-child { margin-bottom: 0; }

.video-subcat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px 2px;
}
.video-subcat-head h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.video-subcat-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-dark);
  background: var(--orange);
  border-radius: 999px;
  padding: 2px 9px;
}

/* Layout ya videos — desktop inajipanga kwenye grid (rahisi kutumika,
   hakuna scroll ya kushoto-kulia), mobile inabaki swipe-horizontal. */
.videos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 4px 2px 14px;
}
@media (max-width: 900px) {
  .videos-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--navy-light) transparent;
  }
  .videos-row::-webkit-scrollbar { height: 6px; }
  .videos-row::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 999px; }
  .videos-row::-webkit-scrollbar-track { background: transparent; }
}

.video-card {
  min-width: 252px;
  max-width: 252px;
  scroll-snap-align: start;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  outline: none;
}

.video-card-cover {
  position: relative;
  width: 100%;
  /* Fallback ya iPhone za zamani (Safari < 15 — haina aspect-ratio):
     padding-top 56.25% inaunda 16:9 bila kutegemea aspect-ratio. */
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}
.video-card-cover > img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.video-card:hover .video-card-cover > img { transform: scale(1.06); }

.video-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  background: rgba(6, 8, 9, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  pointer-events: none;
}

.video-card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  z-index: 2;
  background: rgba(6, 8, 9, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
  pointer-events: none;
}
.video-card:hover .video-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Spinner ya loading inayoonekana kwenye card wakati video inafunguliwa */
.video-card-spinner {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  z-index: 3;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--orange);
  animation: video-spin 0.8s linear infinite;
  pointer-events: none;
}
@keyframes video-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.video-card.is-opening { cursor: progress; opacity: 0.85; }
.video-card.is-opening .video-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(6, 8, 9, 0.35);
}

.video-card-body { padding: 14px 15px 16px; }
.video-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0 0 10px;
  min-height: 39px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 12px;
}
.video-card-btn {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 5px 14px;
  border-radius: 999px;
  transition: transform 0.2s var(--ease-out);
}
.video-card:hover .video-card-btn { transform: scale(1.06); }

@media (max-width: 640px) {
  .videos-section { padding: 46px 0; }
  .video-category-block { padding: 16px; }
  .video-cat-head h3 { font-size: 19px; }
  .video-card { min-width: 200px; max-width: 200px; }
}

/* ============================================================
   AdSense display ad slots
   - Slot zinajificha zikiwa tupu (:empty) — hakuna madhara
     mpaka uweke ad code kutoka AdSense/GAM ndani yake.
   - Ukishaweka <ins class="adsbygoogle">...</ins> ndani,
     slot inajionyesha katikati na kufanya responsive.
   ============================================================ */
.ad-slot {
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  overflow: hidden;
}
/* Slot tupu (bila ad code) haina height wala margin — haibadilishi layout */
.ad-slot:empty {
  display: none;
}
.ad-slot-footer {
  margin-top: 0;
}
.ad-slot ins.adsbygoogle {
  display: block;
  max-width: 100%;
  margin: 18px auto;
}
.ad-slot-footer ins.adsbygoogle {
  margin: 10px auto 0;
}

/* ============================================================
   AdSense display ad slots
   - Slot zinajificha zikiwa tupu (:empty) — hakuna madhara
     mpaka uweke ad code kutoka AdSense/GAM ndani yake.
   - Ukishaweka <ins class="adsbygoogle">...</ins> ndani,
     slot inajionyesha katikati na kufanya responsive.
   ============================================================ */
.ad-slot {
  width: 100