:root {
  --bg: #080c10;
  --bg2: #0e1420;
  --bg3: #141c2b;
  --surface: #1a2235;
  --surface2: #212d42;
  --border: rgba(255,255,255,0.07);
  --accent: #e8192c;
  --accent2: #ff4757;
  --gold: #f5c518;
  --text: #e8eaf0;
  --text2: #8899aa;
  --text3: #55677a;
  --green: #2ed573;
  --blue: #3d9bff;
  --nav-h: 64px;
  --radius: 10px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --glow: 0 0 30px rgba(232,25,44,0.3);
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* LOADER */
.loader-screen {
  position: fixed; inset: 0;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-screen.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--text);
}
.loader-logo span { color: var(--accent); }
.loader-bar {
  width: 200px; height: 3px;
  background: var(--surface);
  border-radius: 99px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  animation: load 1.5s ease forwards;
}
@keyframes load { from { width: 0; } to { width: 100%; } }
@keyframes autoHide { 0%,80%{opacity:1;visibility:visible} 100%{opacity:0;visibility:hidden;pointer-events:none} }
.loader-screen { animation: autoHide 5s ease forwards; }
.loader-screen.hidden { opacity:0 !important; visibility:hidden !important; pointer-events:none !important; animation:none !important; }

/* NAVBAR */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 32px;
  padding: 0 32px;
  background: linear-gradient(180deg, rgba(8,12,16,0.98) 0%, rgba(8,12,16,0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  color: var(--text2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active { color: var(--text); background: var(--surface); }
.nav-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 14px;
  height: 38px;
  min-width: 220px;
}
.nav-search input {
  background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font-body); font-size: 14px;
  width: 100%;
}
.nav-search input::placeholder { color: var(--text3); }
.nav-search svg { color: var(--text3); flex-shrink: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: var(--glow); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface2); border-color: rgba(255,255,255,0.15); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--surface); }
.btn-danger { background: rgba(232,25,44,0.15); color: var(--accent2); border: 1px solid rgba(232,25,44,0.3); }
.btn-danger:hover { background: rgba(232,25,44,0.25); }
.btn-success { background: rgba(46,213,115,0.15); color: var(--green); border: 1px solid rgba(46,213,115,0.3); }
.btn-success:hover { background: rgba(46,213,115,0.25); }
.btn-sm { padding: 5px 12px; font-size: 13px; }
.btn-lg { padding: 12px 28px; font-size: 16px; }
.btn-icon { padding: 8px; width: 36px; height: 36px; justify-content: center; }

/* AVATAR */
.nav-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  position: relative;
}
.nav-avatar:hover { border-color: var(--accent); }
.nav-avatar .badge {
  position: absolute; top: -3px; right: -3px;
  background: var(--gold); color: #000;
  font-size: 9px; font-weight: 700; font-family: var(--font-mono);
  padding: 1px 4px; border-radius: 4px;
}

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 180px;
  padding: 8px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 200;
}

.dropdown.open .dropdown-menu { display: block; }
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 6px;
  color: var(--text2); font-size: 14px; cursor: pointer;
  transition: all 0.15s;
}
.dropdown-item:hover { background: var(--surface); color: var(--text); }
.dropdown-item.danger { color: var(--accent2); }
.dropdown-item.danger:hover { background: rgba(232,25,44,0.1); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* MAIN CONTENT */
#page-content { padding-top: var(--nav-h); min-height: 100vh; }

/* HERO */
.hero {
  position: relative; height: 85vh; max-height: 700px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,12,16,0.95) 0%, rgba(8,12,16,0.6) 50%, rgba(8,12,16,0.2) 100%),
              linear-gradient(0deg, rgba(8,12,16,1) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 48px 48px 64px;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-meta {
  display: flex; align-items: center; gap: 16px;
  color: var(--text2); font-size: 14px; margin-bottom: 16px;
}
.hero-meta span { display: flex; align-items: center; gap: 4px; }
.hero-desc {
  color: var(--text2); font-size: 15px; line-height: 1.7;
  margin-bottom: 28px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 40px 32px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-title { font-family: var(--font-display); font-size: 26px; letter-spacing: 2px; }
.section-link { color: var(--accent); font-size: 13px; font-weight: 500; cursor: pointer; }

/* CARDS GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.cards-grid.wide { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.6); }
.card:hover .card-overlay { opacity: 1; }
.card-poster {
  width: 100%; aspect-ratio: 2/3;
  object-fit: cover; display: block;
  background: var(--surface2);
}
.card-poster-placeholder {
  width: 100%; aspect-ratio: 2/3;
  background: var(--surface2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--text3); font-size: 13px;
}
.card-overlay {
  position: absolute; inset: 0;
  background: rgba(8,12,16,0.85);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.25s;
}
.play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn:hover { transform: scale(1.1); box-shadow: var(--glow); }
.card-info { padding: 12px; }
.card-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { display: flex; align-items: center; gap: 8px; color: var(--text3); font-size: 12px; }
.card-type-badge {
  position: absolute; top: 8px; left: 8px;
  background: rgba(8,12,16,0.8); backdrop-filter: blur(4px);
  color: var(--text2); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 7px; border-radius: 4px;
}
.card-type-badge.series { color: var(--blue); }
.rating-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(8,12,16,0.8); backdrop-filter: blur(4px);
  color: var(--gold); font-size: 11px; font-weight: 700; font-family: var(--font-mono);
  padding: 3px 7px; border-radius: 4px;
  display: flex; align-items: center; gap: 3px;
}

/* HORIZONTAL SCROLL */
.scroll-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.scroll-row::-webkit-scrollbar { height: 4px; }
.scroll-row::-webkit-scrollbar-track { background: var(--surface); border-radius: 2px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 2px; }
.scroll-row .card { flex-shrink: 0; width: 180px; scroll-snap-align: start; }

/* FILTERS */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-btn {
  padding: 6px 16px; border-radius: 99px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text2); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* VIDEO PLAYER */
.player-container {
  width: 100%; background: #000;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; position: relative;
}
.player-container iframe { width: 100%; height: 100%; border: none; }
.player-container video { width: 100%; height: 100%; }

/* MODAL */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  padding: 32px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; margin-bottom: 24px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--surface); border: none; color: var(--text2); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { color: var(--text); background: var(--surface2); }

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select option { background: var(--bg2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text3); margin-top: 5px; }
.form-error { font-size: 13px; color: var(--accent2); margin-top: 5px; }

/* TABS */
.tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.tab {
  padding: 12px 20px; font-size: 14px; font-weight: 500; color: var(--text2);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all 0.2s;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }

/* DETAIL PAGE */
.detail-backdrop {
  position: relative; height: 420px; overflow: hidden;
}
.detail-backdrop img { width: 100%; height: 100%; object-fit: cover; }
.detail-backdrop::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(8,12,16,0.5) 60%, transparent 100%);
}
.detail-content { padding: 0 40px 40px; }
.detail-header { display: flex; gap: 32px; margin-top: -80px; position: relative; z-index: 2; margin-bottom: 32px; }
.detail-poster { width: 200px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--border); }
.detail-poster img { width: 100%; display: block; }
.detail-info { padding-top: 40px; }
.detail-title { font-family: var(--font-display); font-size: 48px; letter-spacing: 3px; line-height: 1; margin-bottom: 12px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.detail-meta-item { display: flex; align-items: center; gap: 5px; color: var(--text2); font-size: 13px; }
.detail-desc { color: var(--text2); line-height: 1.8; font-size: 15px; margin-bottom: 24px; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* LINKS GRID */
.links-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.link-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s; font-size: 13px;
}
.link-btn:hover { background: var(--surface2); border-color: var(--accent); color: var(--accent); }
.link-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.quality-badge { font-family: var(--font-mono); font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.quality-4K { background: var(--gold); color: #000; }
.quality-1080p { background: #3d9bff; color: #fff; }
.quality-720p { background: #2ed573; color: #000; }
.quality-480p { background: var(--text3); color: #fff; }
.lang-badge { font-size: 11px; font-weight: 700; font-family: var(--font-mono); color: var(--text3); }

/* COMMENTS */
.comment {
  display: flex; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.comment:last-child { border-bottom: none; }
.comment-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px;
}
.comment-body { flex: 1; }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.comment-username { font-weight: 600; font-size: 14px; }
.comment-date { color: var(--text3); font-size: 12px; }
.comment-rating { color: var(--gold); font-size: 12px; font-family: var(--font-mono); }
.comment-text { color: var(--text2); font-size: 14px; line-height: 1.7; }
.comment-role { font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }
.role-staff { background: rgba(61,155,255,0.2); color: var(--blue); }
.role-admin { background: rgba(232,25,44,0.2); color: var(--accent2); }

/* STAFF PANEL */
.staff-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--nav-h)); }
.staff-sidebar {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.staff-sidebar-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); padding: 0 12px 12px; }
.staff-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--text2); font-size: 14px; cursor: pointer; transition: all 0.2s;
  margin-bottom: 2px;
}
.staff-nav-item:hover { background: var(--surface); color: var(--text); }
.staff-nav-item.active { background: rgba(232,25,44,0.15); color: var(--accent2); }
.staff-main { padding: 32px; overflow-y: auto; }

/* STATS CARDS */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.stat-value { font-family: var(--font-display); font-size: 36px; letter-spacing: 2px; }
.stat-label { color: var(--text3); font-size: 13px; margin-top: 4px; }

/* TABLE */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--surface); color: var(--text3); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; text-align: left; white-space: nowrap; }
td { padding: 12px 16px; border-top: 1px solid var(--border); vertical-align: middle; }
tr:hover td { background: rgba(255,255,255,0.02); }
.td-actions { display: flex; gap: 6px; }

/* TOAST */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px;
  font-size: 14px; min-width: 260px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid var(--accent); }
.toast.info { border-left: 3px solid var(--blue); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* PAGINATION */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 40px; }
.page-btn { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); cursor: pointer; font-size: 14px; color: var(--text2); transition: all 0.2s; }
.page-btn:hover { background: var(--surface2); color: var(--text); }
.page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* WATCHLIST HEART */
.watchlist-btn { cursor: pointer; padding: 8px 16px; border-radius: 8px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text2); transition: all 0.2s; }
.watchlist-btn:hover { border-color: #ff69b4; color: #ff69b4; }
.watchlist-btn.active { background: rgba(255,105,180,0.15); border-color: #ff69b4; color: #ff69b4; }

/* EPISODES */
.episodes-list { display: flex; flex-direction: column; gap: 8px; }
.episode-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; transition: all 0.2s;
}
.episode-item:hover { background: var(--surface2); border-color: var(--accent); }
.episode-num { font-family: var(--font-mono); font-size: 12px; color: var(--text3); width: 24px; flex-shrink: 0; }
.episode-title { font-size: 14px; font-weight: 500; flex: 1; }
.episode-duration { font-size: 12px; color: var(--text3); }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text3); }
.empty-state svg { opacity: 0.3; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 24px; color: var(--text2); margin-bottom: 8px; letter-spacing: 2px; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* RESPONSIVE */
@media (max-width: 768px) {
  #navbar { padding: 0 16px; gap: 16px; }
  .nav-links { display: none; }
  .nav-search { min-width: 140px; }
  .section { padding: 24px 16px; }
  .hero-content { padding: 24px 16px 48px; }
  .detail-header { flex-direction: column; }
  .detail-poster { width: 140px; }
  .staff-layout { grid-template-columns: 1fr; }
  .staff-sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* UTILITY */
.tag { display: inline-flex; padding: 3px 10px; border-radius: 99px; font-size: 11px; font-weight: 600; background: var(--surface2); color: var(--text2); }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--text3); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text2); }
.text-dim { color: var(--text3); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-right { text-align: right; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
