/* ═══ Reset & Base ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f0f;
  --bg-surface: #1a1a1a;
  --bg-elevated: #272727;
  --bg-hover: #3a3a3a;
  --red: #FF0000;
  --red-light: #FF4444;
  --red-dark: #CC0000;
  --red-glow: rgba(255, 0, 0, 0.25);
  --gold: #fbbf24;
  --gold-glow: rgba(251, 191, 36, 0.2);
  --green: #4ade80;
  --green-glow: rgba(74, 222, 128, 0.25);
  --text: #f1f1f1;
  --text-muted: #aaa;
  --text-dim: #666;
  --border: #333;
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Consolas', monospace;
}

html { font-size: 15px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

a { color: var(--red-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.hidden { display: none !important; }

/* ═══ Screens ═══ */
.screen { display: none; height: 100vh; height: 100dvh; overflow-y: auto; position: relative; z-index: 1; }
.screen.active { display: flex; }

/* ═══ Buttons ═══ */
.btn {
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  padding: 9px 20px; border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; box-shadow: 0 2px 12px var(--red-glow); }
.btn-primary:hover:not(:disabled) { background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%); box-shadow: 0 4px 24px var(--red-glow); transform: translateY(-1px); }
.btn-secondary { background: var(--bg-elevated); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover:not(:disabled) { background: var(--bg-hover); border-color: var(--red); }
.btn-accent { background: linear-gradient(135deg, #ff6b35, #e65100); color: #fff; box-shadow: 0 2px 12px rgba(255,107,53,0.25); }
.btn-accent:hover { box-shadow: 0 4px 20px rgba(255,107,53,0.35); transform: translateY(-1px); }
.btn-ghost { background: none; color: var(--text-muted); border: none; padding: 8px 16px; cursor: pointer; font-size: 0.85rem; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { font-size: 1rem; padding: 12px 32px; border-radius: var(--radius); }
.btn-icon { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; padding: 4px 8px; }
.btn-icon:hover { color: var(--text); }
.btn-forfeit {
  background: transparent; color: var(--red-light); border: 1px solid var(--red);
  padding: 4px 12px; font-size: 0.75rem; border-radius: var(--radius-sm);
  cursor: pointer; font-family: var(--font); font-weight: 600; transition: all 0.15s;
}
.btn-forfeit:hover { background: var(--red); color: #fff; }

/* ═══ Inputs ═══ */
input[type="text"], select {
  font-family: var(--font); font-size: 0.9rem; padding: 9px 12px;
  background: var(--bg); color: var(--text); border: 1px solid var(--border);
  border-radius: var(--radius-sm); outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
input[type="text"]:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-glow); }
.input-group { display: flex; flex-direction: column; gap: 5px; position: relative; }
.input-group label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.error-msg { color: var(--red); font-size: 0.85rem; min-height: 1.2em; margin-top: 6px; }

/* ═══ HOME ═══ */
#screen-home { flex-direction: column; align-items: center; justify-content: center; padding: 16px; }
.home-container { max-width: 420px; width: 100%; position: relative; z-index: 1; }
.logo { text-align: center; margin-bottom: 16px; }
.logo h1 { font-size: clamp(2rem, 8vw, 3rem); font-weight: 900; letter-spacing: 0.06em; color: var(--text); line-height: 1; }
.logo h1 span { color: var(--red); text-shadow: 0 0 30px var(--red-glow); }
.logo h1 em { font-style: normal; font-size: 0.5em; color: var(--text-muted); vertical-align: super; }
.logo .tagline { color: var(--text-muted); font-size: clamp(0.8rem, 2.5vw, 0.95rem); margin-top: 6px; }

.home-card {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; margin-bottom: 20px; position: relative; overflow: hidden;
}
.home-card::before { content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, transparent, var(--red), #ff6b35, var(--red), transparent); }
.home-buttons { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.home-buttons .btn-primary, .home-buttons .btn-accent { width: 100%; }
.divider { display: flex; align-items: center; gap: 12px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span { color: var(--text-dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.join-row { display: flex; gap: 8px; }
.join-row input { flex: 1; text-align: center; font-family: var(--mono); font-size: 1rem; letter-spacing: 0.15em; }
.solo-row { display: flex; gap: 8px; }
.solo-row select { width: auto; flex-shrink: 0; }
.solo-row .btn-accent { flex: 1; }

.rules-summary { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; }
.rules-summary::before { content: ''; display: block; height: 2px; margin: -16px -20px 12px; background: linear-gradient(90deg, var(--red), transparent); border-radius: 2px 2px 0 0; }
.rules-summary h3 { font-size: 0.85rem; color: var(--red-light); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.rules-summary ol { padding-left: 18px; display: flex; flex-direction: column; gap: 4px; }
.rules-summary li { color: var(--text-muted); font-size: 0.8rem; line-height: 1.45; }
.rules-summary li::marker { color: var(--red); }

/* ═══ LOBBY ═══ */
#screen-lobby { flex-direction: column; align-items: center; padding: 24px 16px; }
.lobby-container { max-width: 620px; width: 100%; }
.lobby-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.lobby-header h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: 0.06em; }
.lobby-header h2 span { color: var(--red); }
.room-code-display { display: flex; align-items: center; gap: 8px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px 12px; }
.room-code-display .label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }
.room-code-display .code { font-family: var(--mono); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.2em; color: var(--red-light); text-shadow: 0 0 12px var(--red-glow); }

.lobby-body { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.lobby-players, .lobby-settings { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.lobby-players h3, .lobby-settings h3 { font-size: 0.8rem; color: var(--red-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
#player-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
#player-list li { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: var(--bg); border-radius: var(--radius-sm); }
.player-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 6px currentColor; }
.player-name { flex: 1; font-weight: 500; font-size: 0.9rem; }
.host-crown { font-size: 1.1rem; flex-shrink: 0; }
.btn-kick { color: var(--red); font-size: 1.2rem; }

.setting-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.setting-row label { font-size: 0.85rem; color: var(--text); }
.stepper { display: flex; align-items: center; gap: 6px; }
.stepper span { font-family: var(--mono); font-size: 0.95rem; min-width: 36px; text-align: center; }
.btn-step {
  width: 28px; height: 28px; border: 1px solid var(--border); background: var(--bg);
  color: var(--text); border-radius: var(--radius-sm); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; font-weight: 700; transition: all 0.15s;
}
.btn-step:hover { background: var(--bg-hover); border-color: var(--red); color: var(--red-light); }
#setting-mode, #setting-difficulty { width: 100%; margin-bottom: 12px; }
.custom-videos { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.custom-videos.hidden { display: none; }

.search-results { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); list-style: none; z-index: 100; max-height: 300px; overflow-y: auto; }
.search-results.hidden { display: none; }
.search-results li { padding: 8px 10px; cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
.search-results li:hover { background: var(--bg-hover); }
.search-thumb { width: 80px; height: 45px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.search-title { font-weight: 500; }
.search-author { font-size: 0.75rem; color: var(--text-muted); }

#btn-start-game { width: 100%; margin-top: 6px; }
#btn-leave-lobby { align-self: center; }

/* ═══ COUNTDOWN ═══ */
#screen-countdown { flex-direction: column; align-items: center; justify-content: center; padding: 16px; background: radial-gradient(ellipse at center, var(--bg-elevated) 0%, var(--bg) 70%); }
.countdown-container { text-align: center; width: 100%; max-width: 600px; }
.countdown-badge { display: inline-block; background: linear-gradient(135deg, rgba(255,0,0,0.15), rgba(255,0,0,0.05)); color: var(--red-light); padding: 5px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; border: 1px solid rgba(255,0,0,0.2); margin-bottom: 32px; }
.countdown-videos { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.countdown-video { display: flex; flex-direction: column; gap: 8px; align-items: center; flex: 1; min-width: 0; }
.countdown-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 600; }
.countdown-thumb { width: 200px; height: 112px; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid var(--border); }
.target-thumb { border-color: var(--red); box-shadow: 0 0 20px var(--red-glow); }
.countdown-name { font-size: clamp(0.9rem, 3vw, 1.2rem); font-weight: 700; color: var(--text); text-align: center; word-break: break-word; }
.countdown-name.target { color: var(--red); text-shadow: 0 0 20px var(--red-glow); }
.countdown-arrow { font-size: 1.6rem; color: var(--text-dim); flex-shrink: 0; }
.countdown-number { font-family: var(--mono); font-size: clamp(4rem, 15vw, 7rem); font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 12px; text-shadow: 0 0 15px var(--red-glow); animation: countPulse 1s ease-in-out infinite; }
@keyframes countPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
.countdown-text { font-size: 0.9rem; color: var(--text-muted); }

/* ═══ GAME ═══ */
#screen-game { flex-direction: column; height: 100vh; height: 100dvh; overflow: hidden; }

.game-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 12px; background: var(--bg-surface); border-bottom: 1px solid var(--border);
  flex-shrink: 0; z-index: 10; gap: 8px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-center { display: flex; align-items: center; gap: 8px; }
.topbar-thumb { width: 40px; height: 23px; object-fit: cover; border-radius: 3px; border: 1px solid var(--red); }
.round-badge { background: linear-gradient(135deg, rgba(255,0,0,0.15), rgba(255,0,0,0.05)); color: var(--red-light); padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; border: 1px solid rgba(255,0,0,0.2); }
.target-label { color: var(--text-muted); font-size: 0.8rem; }
.target-name { color: var(--red); font-weight: 700; font-size: 0.9rem; text-shadow: 0 0 12px var(--red-glow); max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.timer { font-family: var(--mono); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.timer.warning { color: var(--gold); }
.timer.danger { color: var(--red); animation: countPulse 1s infinite; }
.click-counter { font-family: var(--mono); font-size: 0.85rem; color: var(--text-muted); }

/* Current video */
.current-video {
  flex-shrink: 0; background: var(--bg-surface); border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.current-video-loading { padding: 40px; text-align: center; color: var(--text-muted); }
.current-video-card { display: flex; gap: 16px; padding: 12px 16px; }
.current-thumb-wrap { position: relative; flex-shrink: 0; }
.current-thumb { width: 320px; height: 180px; object-fit: cover; border-radius: var(--radius-sm); }
.duration-badge {
  position: absolute; bottom: 6px; right: 6px; background: rgba(0,0,0,0.8);
  color: #fff; font-size: 0.7rem; font-family: var(--mono); padding: 2px 6px;
  border-radius: 3px; font-weight: 600;
}
.current-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.current-title { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
.current-meta { display: flex; gap: 12px; font-size: 0.85rem; }
.current-author { color: var(--text-muted); font-weight: 500; }
.current-views { color: var(--text-dim); }
.current-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.4; margin-top: 4px; }

/* Navigation grid */
.nav-grid {
  flex: 1; overflow-y: auto; padding: 12px 16px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}
.nav-title { font-size: 0.85rem; color: var(--red-light); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; font-weight: 700; }
.nav-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.nav-loading { text-align: center; color: var(--text-muted); padding: 20px; }

.video-card {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s; overflow: hidden;
}
.video-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,0,0,0.12); }
.card-thumb-wrap { position: relative; }
.card-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.card-info { padding: 10px; }
.card-title { font-size: 0.85rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-author { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ═══ FINISHED/FORFEIT OVERLAYS ═══ */
.finished-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; z-index: 100;
}
.finished-card {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center; position: relative; max-width: 400px;
}
.finished-icon { font-size: 3rem; margin-bottom: 12px; }
.finished-card h2 { font-size: 1.4rem; margin-bottom: 8px; }
.finished-details { font-family: var(--mono); font-size: 1.1rem; color: var(--text-muted); }
.finished-waiting { color: var(--text-dim); font-size: 0.85rem; margin-top: 16px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.forfeit-card { border-color: var(--red); }
.forfeit-card h2 { color: var(--red-light); }

/* ═══ PLAYER BAR ═══ */
.player-bar {
  flex-shrink: 0; display: flex; gap: 6px; padding: 6px 12px;
  background: var(--bg-surface); border-top: 1px solid var(--border);
  overflow-x: auto; z-index: 10;
}
.player-chip {
  display: flex; align-items: center; gap: 6px; padding: 5px 10px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  flex-shrink: 0; font-size: 0.8rem; transition: all 0.2s;
}
.player-chip.is-me { border-color: rgba(255,255,255,0.2); }
.player-chip.finished { border-color: var(--green); background: rgba(74,222,128,0.08); }
.player-chip.forfeited { opacity: 0.5; }
.player-chip.one-click { border-color: var(--gold); background: rgba(251,191,36,0.08); animation: countPulse 1s infinite; }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 4px currentColor; }
.chip-info { display: flex; flex-direction: column; min-width: 0; }
.chip-name { font-weight: 600; font-size: 0.75rem; white-space: nowrap; }
.chip-page { font-size: 0.65rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.chip-clicks { font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); }
.chip-status { font-size: 0.75rem; font-weight: 700; }

/* ═══ RESULTS ═══ */
#screen-results, #screen-solo-results { flex-direction: column; align-items: center; padding: 24px 16px; }
.results-container { max-width: 700px; width: 100%; }
.results-container h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; text-align: center; }

.results-videos { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }
.results-video-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.results-thumb { width: 120px; height: 68px; object-fit: cover; border-radius: var(--radius-sm); }
.results-video-badge.start .results-thumb { border: 2px solid var(--border); }
.results-video-badge.end .results-thumb { border: 2px solid var(--red); box-shadow: 0 0 12px var(--red-glow); }
.results-video-badge span { font-size: 0.85rem; font-weight: 600; }
.results-video-badge.end span { color: var(--red); }
.arrow { color: var(--text-dim); font-size: 1.4rem; }

.results-table-wrap { overflow-x: auto; margin-bottom: 20px; }
.results-table { width: 100%; border-collapse: collapse; }
.results-table th {
  text-align: left; padding: 10px 12px; font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border);
}
.results-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.player-cell { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rank.gold { color: var(--gold); font-weight: 800; }
.rank.silver { color: #c0c0c0; font-weight: 700; }
.rank.bronze { color: #cd7f32; font-weight: 700; }
.points { color: var(--green); font-weight: 600; }
.total { font-weight: 700; font-family: var(--mono); }

.results-paths { margin-bottom: 24px; }
.results-paths h3 { font-size: 0.85rem; color: var(--red-light); margin-bottom: 10px; text-transform: uppercase; }
.path-row { margin-bottom: 8px; }
.path-player { font-weight: 600; font-size: 0.8rem; margin-bottom: 4px; }
.path-steps { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.path-step { font-size: 0.75rem; padding: 2px 8px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: 4px; }
.path-arrow { color: var(--text-dim); font-size: 0.7rem; }

.final-standings { text-align: center; margin-bottom: 24px; }
.podium { display: flex; align-items: flex-end; justify-content: center; gap: 12px; margin-top: 16px; }
.podium-spot { display: flex; flex-direction: column; align-items: center; }
.podium-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.podium-score { font-family: var(--mono); font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.podium-bar { width: 80px; display: flex; align-items: center; justify-content: center; border-radius: 6px 6px 0 0; font-weight: 900; font-size: 1.4rem; }
.podium-spot:nth-child(1) .podium-bar { height: 80px; background: linear-gradient(180deg, #c0c0c0, #999); }
.podium-spot:nth-child(2) .podium-bar { height: 120px; background: linear-gradient(180deg, var(--gold), #d4a017); }
.podium-spot:nth-child(3) .podium-bar { height: 60px; background: linear-gradient(180deg, #cd7f32, #a0522d); }

.waiting-host { text-align: center; color: var(--text-muted); margin-bottom: 16px; }
.waiting-crown { font-size: 1.5rem; }

.results-actions { display: flex; gap: 10px; justify-content: center; }

/* Solo results */
.solo-result-card {
  display: flex; gap: 24px; justify-content: center; margin: 24px 0;
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.solo-stat { text-align: center; }
.solo-stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.solo-stat-value { font-size: 1.8rem; font-weight: 800; font-family: var(--mono); }

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
  .lobby-body { grid-template-columns: 1fr; }
  .current-video-card { flex-direction: column; }
  .current-thumb { width: 100%; height: auto; }
  .nav-cards { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .countdown-videos { flex-direction: column; }
  .countdown-thumb { width: 160px; height: 90px; }
  .topbar-center { order: 3; width: 100%; justify-content: center; }
  .solo-result-card { flex-direction: column; gap: 16px; }
}

/* ═══ Skeleton loading ═══ */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, var(--bg-hover) 50%, var(--bg-elevated) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  border-radius: 4px;
}
.skeleton-thumb { width: 320px; height: 180px; border-radius: var(--radius-sm); }
.skeleton-card-thumb { width: 100%; aspect-ratio: 16/9; }
.skeleton-title { height: 20px; width: 70%; margin-bottom: 8px; }
.skeleton-meta { height: 14px; width: 40%; }
.skeleton-line { height: 14px; width: 85%; margin-bottom: 6px; }
.skeleton-line-sm { height: 12px; width: 50%; }
.skeleton-card { pointer-events: none; }
.skeleton-card .card-info { padding: 10px; }
