*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg0: #0a0a0f;
  --bg1: #12121a;
  --bg2: #1a1a26;
  --bg3: #22223a;
  --text1: #f0f0ff;
  --text2: #a0a0c0;
  --text3: #606080;
  --teal1: #1db8a0;
  --teal2: #15a090;
  --purple1: #7c5cbf;
  --amber1: #e6a817;
  --red1: #e05555;
  --radius: 10px;
  --radius-sm: 6px;
}

html, body { height: 100%; background: var(--bg0); color: var(--text1); font-family: 'Outfit', sans-serif; overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 4px; }

/* ── LOGIN ── */
.login-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg0);
  display: flex; align-items: center; justify-content: center;
}
.login-card {
  background: var(--bg1); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 40px 36px; width: 100%; max-width: 380px;
  display: flex; flex-direction: column; gap: 12px;
}
.login-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.login-brand { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--teal1); }
.login-title { font-size: 20px; font-weight: 600; }
.login-sub { font-size: 13px; color: var(--text3); margin-bottom: 4px; }
.login-input {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--text1); font-size: 14px; font-family: 'Outfit', sans-serif;
  outline: none; width: 100%;
}
.login-input:focus { border-color: var(--teal1); }
.login-error { font-size: 12px; color: var(--red1); min-height: 16px; }
.login-btn {
  background: var(--teal1); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: 12px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: 'Outfit', sans-serif; transition: background 0.2s;
  margin-top: 4px;
}
.login-btn:hover { background: var(--teal2); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.85);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--bg1); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); width: 100%; max-width: 700px;
  max-height: 85vh; overflow-y: auto; display: flex; flex-direction: column;
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky; top: 0; background: var(--bg1); z-index: 2;
}
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; }
.modal-close {
  background: rgba(255,255,255,0.08); border: none; color: var(--text1);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-loading { padding: 24px; text-align: center; color: var(--text3); font-size: 13px; }

/* ── EPISODE PICKER ── */
.ep-seasons {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.season-btn {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text2); padding: 6px 14px; border-radius: 20px;
  font-size: 13px; cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: all 0.2s;
}
.season-btn.active, .season-btn:hover { background: var(--teal1); color: #fff; border-color: var(--teal1); }
.ep-episodes { display: flex; flex-direction: column; gap: 2px; padding: 8px; }
.ep-row {
  display: flex; align-items: center; gap: 14px;
  padding: 10px; border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.15s;
}
.ep-row:hover { background: var(--bg2); }
.ep-thumb {
  width: 120px; height: 68px; border-radius: var(--radius-sm);
  background: var(--bg3); flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ep-play-icon { color: rgba(255,255,255,0.7); font-size: 22px; }
.ep-info { flex: 1; min-width: 0; }
.ep-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.ep-overview { font-size: 12px; color: var(--text3); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── ALBUM MODAL ── */
.album-header {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.album-art {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  background: var(--bg3); flex-shrink: 0;
}
.album-title { font-size: 18px; font-weight: 600; }
.album-artist { font-size: 13px; color: var(--text3); margin-top: 4px; }
.track-list { padding: 8px; }
.track-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.15s;
}
.track-row:hover, .track-row.playing { background: var(--bg2); }
.track-row.playing .track-name { color: var(--teal1); }
.track-num { width: 24px; text-align: center; font-size: 13px; color: var(--text3); }
.track-info { flex: 1; min-width: 0; }
.track-name { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-dur { font-size: 12px; color: var(--text3); }
.track-play { background: none; border: none; color: var(--text3); font-size: 16px; cursor: pointer; display: flex; align-items: center; }
.track-row:hover .track-play { color: var(--teal1); }

/* ── MINI PLAYER ── */
.mini-player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--bg1); border-top: 1px solid rgba(255,255,255,0.08);
  display: none; align-items: center; gap: 16px;
  padding: 10px 20px 10px;
  height: 64px;
}
.mini-player.active { display: flex; }
.mini-art {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--bg3); flex-shrink: 0;
}
.mini-info { flex: 1; min-width: 0; }
.mini-track { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-artist { font-size: 11px; color: var(--text3); }
.mini-controls { display: flex; align-items: center; gap: 8px; }
.mini-btn {
  background: none; border: none; color: var(--text2);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all 0.2s;
}
.mini-btn:hover { color: var(--text1); background: var(--bg2); }
.mini-btn.play { background: var(--teal1); color: #fff; }
.mini-btn.play:hover { background: var(--teal2); }
.mini-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--bg3); cursor: pointer;
}
.mini-progress-fill { height: 100%; background: var(--teal1); width: 0%; transition: width 0.5s linear; }

/* ── LAYOUT ── */
.main-wrap { min-height: 100vh; }

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 16px;
  padding: 0 20px; height: 56px;
  background: rgba(10,10,15,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--teal1); letter-spacing: 1px; cursor: pointer; }
.topbar-tabs { display: flex; gap: 4px; }
.topbar-tab {
  background: none; border: none; color: var(--text2);
  font-family: 'Outfit', sans-serif; font-size: 14px;
  padding: 6px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s;
}
.topbar-tab:hover { color: var(--text1); background: var(--bg2); }
.topbar-tab.active { color: var(--text1); background: var(--bg2); }
.topbar-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 6px 14px; width: 220px;
}
.search-box i { color: var(--text3); font-size: 15px; }
.search-box input { background: none; border: none; outline: none; color: var(--text1); font-size: 13px; width: 100%; }
.search-box input::placeholder { color: var(--text3); }
.icon-btn {
  background: none; border: none; color: var(--text2);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.2s;
}
.icon-btn:hover { background: var(--bg2); color: var(--text1); }
.icon-btn.small { width: 28px; height: 28px; font-size: 14px; }
.user-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple1), var(--teal1));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; cursor: pointer; color: #fff;
}

/* ── SIDEBAR ── */
.sb-overlay { display: none; position: fixed; inset: 0; z-index: 199; background: rgba(0,0,0,0.6); }
.sb-overlay.show { display: block; }
.sidebar {
  position: fixed; left: -280px; top: 0; bottom: 0; width: 260px;
  background: var(--bg1); border-right: 1px solid rgba(255,255,255,0.06);
  z-index: 200; display: flex; flex-direction: column;
  transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
}
.sidebar.open { left: 0; }
.sidebar-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 8px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--teal1); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #fff; }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 20px; }
.sidebar-nav { flex: 1; padding: 8px; overflow-y: auto; }
.nav-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text2); text-decoration: none; font-size: 14px; transition: all 0.2s; margin-bottom: 2px; }
.nav-item:hover { background: var(--bg2); color: var(--text1); }
.nav-item.active { background: var(--bg3); color: var(--text1); }
.nav-item i { font-size: 18px; width: 20px; }
.nav-sep { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }
.admin-pill { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; }
.sidebar-foot { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.user-info { flex: 1; min-width: 0; }
.user-name { font-size: 13px; font-weight: 500; }
.user-role { font-size: 11px; color: var(--text3); }

/* ── HERO ── */
.hero-banner { position: relative; height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#1a0a3a,#0a1a3a); }
.hero-fade { position: absolute; inset: 0; background: linear-gradient(to top,var(--bg0) 0%,transparent 60%), linear-gradient(to right,rgba(0,0,0,0.8) 0%,transparent 60%); }
.hero-content { position: relative; z-index: 2; padding: 40px; max-width: 600px; }
.hero-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--teal1); margin-bottom: 12px; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; margin-bottom: 8px; }
.hero-meta { font-size: 14px; color: var(--text2); margin-bottom: 20px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--teal1); color: #fff; border: none; padding: 10px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.2s; text-decoration: none; }
.btn-primary:hover { background: var(--teal2); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: var(--text1); border: 1px solid rgba(255,255,255,0.2); padding: 10px 22px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all 0.2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ── SHELVES ── */
.shelves { padding: 24px 20px; display: flex; flex-direction: column; gap: 32px; }
.shelf-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.shelf-title { font-size: 16px; font-weight: 500; }
.shelf-more { background: none; border: none; color: var(--teal1); font-size: 12px; cursor: pointer; font-family: 'Outfit', sans-serif; }
.card-row { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--bg3) transparent; }
.card-row::-webkit-scrollbar { height: 3px; }
.card-row::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }
.card-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.music-grid .media-card { width: 140px; }

/* ── CARDS ── */
.media-card { flex-shrink: 0; cursor: pointer; width: 140px; transition: transform 0.2s; }
.media-card:hover { transform: scale(1.04); }
.card-grid .media-card { flex-shrink: 1; }
.card-thumb { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg2); height: 80px; margin-bottom: 8px; }
.card-thumb.tall { height: 200px; }
.card-thumb.sq { height: 140px; width: 140px; }
.card-thumb-bg { position: absolute; inset: 0; }
.card-thumb-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text3); font-size: 28px; }
.card-title { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-sub { font-size: 11px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ep-badge { position: absolute; top: 6px; left: 6px; background: rgba(0,0,0,0.7); color: var(--text1); font-size: 9px; padding: 2px 6px; border-radius: 4px; }
.card-remove { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,0.6); border: none; color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; opacity: 0; transition: opacity 0.2s; }
.media-card:hover .card-remove { opacity: 1; }
.progress-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.2); }
.progress-fill { height: 100%; background: var(--teal1); }
.g1{background:linear-gradient(135deg,#2a1060,#1a3060)}.g2{background:linear-gradient(135deg,#0a4a3a,#1a3a6a)}.g3{background:linear-gradient(135deg,#4a1a3a,#2a0a5a)}.g4{background:linear-gradient(135deg,#1a3a0a,#0a2a4a)}.g5{background:linear-gradient(135deg,#4a2a0a,#2a1a4a)}.g6{background:linear-gradient(135deg,#0a2a4a,#3a0a2a)}.g7{background:linear-gradient(135deg,#2a3a0a,#0a1a3a)}.g8{background:linear-gradient(135deg,#3a0a0a,#1a2a4a)}

/* ── SECTION HERO ── */
.section-hero { padding: 40px; min-height: 140px; display: flex; flex-direction: column; justify-content: flex-end; }
.section-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 40px; }
.section-hero p { color: var(--text2); font-size: 14px; margin-top: 4px; }

/* ── SEARCH OVERLAY ── */
.search-overlay { position: fixed; top: 56px; left: 0; right: 0; z-index: 150; background: var(--bg1); border-bottom: 1px solid rgba(255,255,255,0.08); max-height: 400px; overflow-y: auto; }
.search-results { padding: 8px; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.15s; }
.search-result-item:hover { background: var(--bg2); }
.search-result-title { font-size: 13px; font-weight: 500; }
.search-result-sub { font-size: 11px; color: var(--text3); }
.search-empty { padding: 20px; text-align: center; color: var(--text3); font-size: 13px; }

/* ── TOAST ── */
.toast-container { position: fixed; bottom: 80px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { display: flex; align-items: center; gap: 10px; background: var(--bg2); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13px; animation: slideIn 0.3s ease; min-width: 220px; }
.toast.success { border-left: 3px solid var(--teal1); }
.toast.error   { border-left: 3px solid var(--red1); }
.toast.info    { border-left: 3px solid var(--purple1); }
@keyframes slideIn { from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)} }

/* ── REQUESTS ── */
.req-page { padding: 40px 20px; max-width: 900px; }
.req-page-header { margin-bottom: 28px; }
.req-page-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; }
.req-page-header p { color: var(--text2); font-size: 14px; margin-top: 4px; }
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.req-card { background: var(--bg1); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px; }
.req-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.req-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.req-icon.media { background: rgba(29,184,160,0.15); color: var(--teal1); }
.req-icon.music { background: rgba(124,92,191,0.15); color: var(--purple1); }
.req-card-title { font-size: 15px; font-weight: 500; }
.req-card-sub { font-size: 12px; color: var(--text3); }
.req-input-wrap { display: flex; align-items: center; gap: 8px; background: var(--bg2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 10px; }
.req-input-wrap input { background: none; border: none; outline: none; color: var(--text1); font-size: 13px; width: 100%; font-family: 'Outfit', sans-serif; }
.req-submit { width: 100%; padding: 10px; border: none; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Outfit', sans-serif; transition: all 0.2s; }
.req-submit.media { background: var(--teal1); color: #fff; }
.req-submit.media:hover { background: var(--teal2); }
.req-submit.music { background: var(--purple1); color: #fff; }
.req-submit.music:hover { background: #6a4aaf; }
.req-history { margin-top: 16px; }
.req-history-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.req-history-item { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.req-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.req-dot.t { background: var(--teal1); }
.req-dot.p { background: var(--purple1); }
.req-item-label { flex: 1; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.req-status { font-size: 10px; padding: 2px 8px; border-radius: 10px; }
.req-status.added   { background: rgba(29,184,160,0.15); color: var(--teal1); }
.req-status.pending { background: rgba(124,92,191,0.15); color: var(--purple1); }

/* ── ADMIN ── */
.admin-view { padding: 0; }
.admin-topbar { display: flex; align-items: flex-start; justify-content: space-between; padding: 32px 24px 20px; }
.admin-title { font-family: 'Bebas Neue', sans-serif; font-size: 36px; }
.admin-sub { font-size: 13px; color: var(--text3); margin-top: 4px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; padding: 6px 14px; border-radius: 20px; background: rgba(29,184,160,0.1); color: var(--teal1); }
.admin-body { padding: 0 24px 32px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 24px; }
.stat-card { background: var(--bg1); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 16px; }
.stat-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.stat-value { font-size: 24px; font-weight: 600; margin-bottom: 2px; }
.stat-sub { font-size: 11px; color: var(--text3); margin-bottom: 8px; }
.stat-bar { height: 4px; background: var(--bg3); border-radius: 2px; overflow: hidden; }
.stat-fill { height: 100%; border-radius: 2px; transition: width 0.5s; }
.stat-fill.teal { background: var(--teal1); }
.stat-fill.purple { background: var(--purple1); }
.stat-fill.amber { background: var(--amber1); }
.admin-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.panel { background: var(--bg1); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden; }
.panel-title { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; font-weight: 500; }
.panel-body { padding: 8px; max-height: 240px; overflow-y: auto; }
.panel-loading { padding: 20px; text-align: center; color: var(--text3); font-size: 13px; }
.panel-row { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: var(--radius-sm); transition: background 0.15s; }
.panel-row:hover { background: var(--bg2); }
.panel-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: #fff; flex-shrink: 0; }
.panel-info { flex: 1; min-width: 0; }
.panel-name { font-size: 13px; font-weight: 500; }
.panel-sub { font-size: 11px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.badge { font-size: 10px; padding: 3px 8px; border-radius: 10px; }
.badge.direct    { background: rgba(29,184,160,0.15); color: var(--teal1); }
.badge.transcode { background: rgba(230,168,23,0.15); color: var(--amber1); }
.svc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.svc-dot.up   { background: var(--teal1); }
.svc-dot.down { background: var(--red1); }
.svc-link { font-size: 11px; color: var(--teal1); text-decoration: none; margin-left: auto; }
.svc-link:hover { text-decoration: underline; }

/* ── COMING SOON ── */
.coming-soon-card { text-align: center; padding: 60px 20px; color: var(--text3); }
.coming-soon-card i { font-size: 48px; margin-bottom: 16px; display: block; }
.coming-soon-card h3 { font-size: 18px; color: var(--text2); margin-bottom: 8px; }
.coming-soon-card p { font-size: 14px; }

/* ── VIEWS ── */
.view { display: none; }
.view.active { display: block; }
.page-content { min-height: calc(100vh - 56px); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .topbar-tabs { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-panels { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .hero-banner { height: 320px; }
  .search-box { width: 160px; }
  .ep-thumb { width: 80px; height: 48px; }
}