/* =========================================================
   REDLINE — Design tokens
   Palette grounded in pit-lane signage: amber marshal lights
   against carbon black, with a cool circuit-cyan for secondary
   states. Condensed technical type (Rajdhani) for display,
   Inter for reading.
   ========================================================= */
:root {
  --bg: #0A0B0D;
  --bg-elevated: #121316;
  --surface: #16181C;
  --surface-2: #1C1F24;
  --border: #262A31;
  --border-bright: #383D46;

  --text: #F2F1ED;
  --text-dim: #A2A5AC;
  --text-faint: #64676E;

  --accent: #FF5A1F;       /* podium amber */
  --accent-hover: #FF7440;
  --accent-dim: #7A2E10;
  --accent-glow: rgba(255, 90, 31, 0.35);

  --cyan: #2FD1C8;         /* circuit cyan */
  --cyan-dim: rgba(47, 209, 200, 0.15);

  --ended: #6B6E76;
  --ended-bg: rgba(107, 110, 118, 0.14);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 12px 30px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 0.4em;
  color: var(--text);
}

p { margin: 0 0 1em; color: var(--text-dim); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =========================================================
   Navbar
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
  flex-shrink: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), #B33712);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px var(--accent-glow);
  flex-shrink: 0;
}
.brand-mark svg { width: 16px; height: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 10px; }

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  width: 220px;
  transition: border-color 0.15s ease, width 0.2s ease;
}
.search-box:focus-within { border-color: var(--accent); width: 260px; }
.search-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 14px;
  width: 100%;
  font-family: var(--font-body);
}
.search-box input::placeholder { color: var(--text-faint); }
.search-box svg { flex-shrink: 0; color: var(--text-faint); width: 15px; height: 15px; }

.btn-admin-link {
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-admin-link:hover { border-color: var(--accent); color: var(--accent); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--text);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #120904;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-bright);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-discord {
  background: #2B2F3A;
  color: #fff;
}
.btn-discord:hover { background: #363B49; }

.btn-youtube {
  background: #3A1414;
  color: #FF6B6B;
}
.btn-youtube:hover { background: #481818; }

.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.btn-danger { background: #3A1414; color: #FF8A8A; border-color: #4a1a1a; }
.btn-danger:hover { background: #4a1a1a; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, var(--accent-glow), transparent 60%),
    repeating-linear-gradient(-35deg, transparent 0 68px, rgba(255,255,255,0.02) 68px 70px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: end;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-style: italic;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 2px solid var(--border);
  padding-left: 28px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero-stat .num span { color: var(--accent); }
.hero-stat .label {
  color: var(--text-faint);
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 20px;
    gap: 32px;
  }
}

/* =========================================================
   Section headers
   ========================================================= */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 28px;
  text-transform: uppercase;
  font-style: italic;
}
.section-head .count-pill {
  color: var(--text-faint);
  font-size: 14px;
  font-family: var(--font-body);
  font-style: normal;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-chip:hover { border-color: var(--border-bright); color: var(--text); }
.filter-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #120904;
}

/* =========================================================
   Competition Card
   ========================================================= */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .comp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .comp-grid { grid-template-columns: 1fr; } }

.comp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-card);
}
.comp-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--accent-dim);
}

.comp-banner {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}
.comp-banner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.comp-card:hover .comp-banner img { transform: scale(1.05); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
.badge-active { background: rgba(255,90,31,0.16); color: var(--accent); }
.badge-active::before { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.badge-upcoming { background: var(--cyan-dim); color: var(--cyan); }
.badge-upcoming::before { background: var(--cyan); }
.badge-ended { background: var(--ended-bg); color: var(--ended); }
.badge-ended::before { background: var(--ended); }

.comp-banner .badge { position: absolute; top: 14px; left: 14px; backdrop-filter: blur(6px); }
.comp-banner .featured-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10,11,13,0.7);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid var(--accent-dim);
}

.comp-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.comp-title {
  font-size: 20px;
  line-height: 1.2;
}
.comp-title a:hover { color: var(--accent); }

.comp-host {
  display: flex;
  align-items: center;
  gap: 9px;
}
.comp-host img {
  width: 26px; height: 26px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-bright);
}
.comp-host .host-label { font-size: 12.5px; color: var(--text-faint); }
.comp-host .host-name { font-size: 13.5px; font-weight: 600; color: var(--text); }

.comp-socials { display: flex; gap: 8px; margin-left: auto; }
.social-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 0.15s ease;
}
.social-icon svg { width: 14px; height: 14px; }
.social-icon:hover { color: var(--text); border-color: var(--border-bright); }
.social-icon.youtube:hover { color: #FF6B6B; border-color: #FF6B6B; }
.social-icon.discord:hover { color: #7B8CFF; border-color: #7B8CFF; }

.comp-desc { font-size: 14px; color: var(--text-dim); flex: 1; }

.comp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-faint);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.comp-meta .meta-item { display: flex; flex-direction: column; gap: 2px; }
.comp-meta .meta-item strong { color: var(--text); font-weight: 600; font-size: 13.5px; }
.comp-meta .prize { color: var(--accent); font-weight: 600; }

/* Featured (large) card */
.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 20px 50px rgba(0,0,0,0.45);
}
.featured-card .comp-banner { aspect-ratio: auto; height: 100%; min-height: 260px; }
.featured-card .comp-body { padding: 32px; justify-content: center; }
.featured-card .comp-title { font-size: 30px; }
@media (max-width: 780px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .comp-banner { aspect-ratio: 16/9; min-height: 0; }
}

.empty-state {
  text-align: center;
  padding: 70px 20px;
  border: 1px dashed var(--border-bright);
  border-radius: var(--radius-lg);
  color: var(--text-faint);
}
.empty-state h3 { color: var(--text-dim); font-style: italic; text-transform: uppercase; }

/* =========================================================
   Competition Detail Page
   ========================================================= */
.comp-header {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 28px;
}
.comp-header-banner { aspect-ratio: 21/8; overflow: hidden; background: var(--surface-2); }
.comp-header-banner img { width: 100%; height: 100%; object-fit: cover; }

.comp-header-body {
  background: var(--surface);
  padding: 28px 32px 32px;
}

.comp-header-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }

.comp-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 18px;
}

.host-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.host-row img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-bright);
}
.host-row .host-info .label { font-size: 12px; color: var(--text-faint); }
.host-row .host-info .name { font-size: 16px; font-weight: 700; font-family: var(--font-display); }
.host-row .comp-socials { margin-left: 0; }

.stat-strip {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.stat-strip .stat .num { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.stat-strip .stat .num.accent { color: var(--accent); }
.stat-strip .stat .label { font-size: 12.5px; color: var(--text-faint); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-bottom: 20px;
}
.info-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-style: normal;
  margin-bottom: 12px;
}
.info-card p, .info-card li { color: var(--text-dim); font-size: 14.5px; }
.info-card ul { padding-left: 18px; margin: 0; }

.side-facts { display: flex; flex-direction: column; gap: 0; }
.fact-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.fact-row:last-child { border-bottom: none; }
.fact-row .k { color: var(--text-faint); }
.fact-row .v { color: var(--text); font-weight: 600; text-align: right; }

/* =========================================================
   Entries
   ========================================================= */
.entries-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.view-toggle { display: flex; gap: 4px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 3px; }
.view-toggle button {
  border: none; background: none; color: var(--text-faint);
  padding: 7px 12px; border-radius: 5px; cursor: pointer; font-size: 13px; display:flex; align-items:center; gap:6px;
}
.view-toggle button.active { background: var(--surface-2); color: var(--text); }

.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-family: var(--font-body);
}

.entries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .entries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .entries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .entries-grid { grid-template-columns: 1fr; } }

.entries-grid.list-view { display: flex; flex-direction: column; gap: 12px; }

.entry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.entry-card:hover { border-color: var(--border-bright); transform: translateY(-2px); }

.entry-thumb { position: relative; aspect-ratio: 16/9; background: var(--surface-2); cursor: pointer; overflow: hidden; }
.entry-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.entry-thumb:hover img { transform: scale(1.06); }
.entry-thumb .play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,11,13,0.15);
  opacity: 0; transition: opacity 0.15s ease;
}
.entry-thumb:hover .play-overlay { opacity: 1; }
.entry-thumb .play-overlay svg {
  width: 42px; height: 42px; color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.entry-body { padding: 14px 16px 16px; }
.entry-title { font-family: var(--font-body); font-weight: 600; font-size: 14.5px; line-height: 1.3; margin-bottom: 8px; }
.entry-creator { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.entry-creator img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.entry-creator span { font-size: 12.5px; color: var(--text-dim); }
.entry-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-faint); margin-bottom: 12px; }
.entry-meta span { display: flex; align-items: center; gap: 4px; }

.list-view .entry-card { display: flex; }
.list-view .entry-thumb { width: 200px; flex-shrink: 0; aspect-ratio: 16/9; }
.list-view .entry-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 560px) { .list-view .entry-thumb { width: 120px; } }

.winner-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(120deg, rgba(255,90,31,0.14), rgba(255,90,31,0.02));
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-bottom: 28px;
}
.winner-banner .trophy {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px var(--accent-glow);
}
.winner-banner .trophy svg { width: 26px; height: 26px; color: #120904; }
.winner-banner .win-label { text-transform: uppercase; font-size: 12px; letter-spacing: 0.08em; color: var(--accent); font-weight: 700; }
.winner-banner .win-title { font-family: var(--font-display); font-size: 20px; margin-top: 2px; }
.winner-banner .win-sub { font-size: 13.5px; color: var(--text-dim); margin-top: 2px; }
.winner-banner .btn { margin-left: auto; flex-shrink: 0; }
@media (max-width: 620px) { .winner-banner { flex-wrap: wrap; } .winner-banner .btn { margin-left: 0; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 60px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner .brand { font-size: 18px; }
.footer-note { color: var(--text-faint); font-size: 13px; }

/* =========================================================
   Login page
   ========================================================= */
.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,90,31,0.12), transparent 60%),
    var(--bg);
}
.auth-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.auth-card .brand { justify-content: center; margin-bottom: 24px; }
.auth-card h1 { font-size: 22px; text-align: center; text-transform: uppercase; font-style: italic; }
.auth-card p.lead { text-align: center; font-size: 13.5px; margin-bottom: 24px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dim); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { min-height: 90px; resize: vertical; }
.field-hint { font-size: 12px; color: var(--text-faint); margin-top: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.alert {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  margin-bottom: 18px;
}
.alert-error { background: rgba(255,70,70,0.1); color: #FF8A8A; border: 1px solid rgba(255,70,70,0.25); }
.alert-success { background: rgba(47,209,200,0.1); color: var(--cyan); border: 1px solid rgba(47,209,200,0.25); }

.checkbox-row { display: flex; align-items: center; gap: 8px; }
.checkbox-row input { width: auto; }

/* Skeleton loading */
.skeleton { background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 37%, var(--surface) 63%); background-size: 400% 100%; animation: skeleton-loading 1.4s ease infinite; }
@keyframes skeleton-loading { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }
