[x-cloak] { display: none !important; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.s-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.s-hero-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
}
.s-hero-card__number {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}
.s-hero-card__label {
    font-size: 11px;
    font-family: ui-monospace, monospace;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* ── Leaderboard ───────────────────────────────────────────────────────────── */
.s-leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 860px) {
    .s-leaderboard-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .s-leaderboard-grid { grid-template-columns: 1fr; }
}

.s-leaderboard-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}
.s-leaderboard-card__title {
    font-size: 13px;
    font-family: ui-monospace, monospace;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
}
.s-leaderboard-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}
.s-leaderboard-row:last-child { border-bottom: none; }
.s-leaderboard-row__rank {
    width: 20px;
    text-align: right;
    font-size: 11px;
    font-family: ui-monospace, monospace;
    color: var(--text-muted);
    flex-shrink: 0;
}
.s-leaderboard-row__name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.s-leaderboard-row__sub {
    font-size: 11px;
    color: var(--text-muted);
    font-family: ui-monospace, monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.s-leaderboard-row__count {
    font-size: 13px;
    font-family: ui-monospace, monospace;
    color: var(--accent);
    flex-shrink: 0;
}
.s-leaderboard-row__sprite {
    width: 36px;
    height: 36px;
    image-rendering: pixelated;
    flex-shrink: 0;
}

/* ── Rarity dot ────────────────────────────────────────────────────────────── */
.s-rarity-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.s-rarity-dot--legendary { background: #f6e652; }
.s-rarity-dot--mythical  { background: #fd8dff; }
.s-rarity-dot--normal    { background: #bbdf76; }

/* ── Shiny feed ────────────────────────────────────────────────────────────── */
.s-shiny-feed {
    display: flex;
    flex-direction: column;
}
.s-shiny-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.s-shiny-item:last-child { border-bottom: none; }
.s-shiny-item__sprite {
    width: 48px;
    height: 48px;
    image-rendering: pixelated;
    flex-shrink: 0;
}
.s-shiny-item__name {
    font-size: 15px;
    font-weight: 600;
}
.s-shiny-item__meta {
    color: var(--text-muted);
    font-size: 12px;
    font-family: ui-monospace, monospace;
    margin-top: 2px;
}

/* ── Misc ──────────────────────────────────────────────────────────────────── */
.s-refresh-indicator {
    font-size: 11px;
    font-family: ui-monospace, monospace;
    color: var(--text-muted);
}

.s-chart-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.s-skeleton {
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
    animation: s-pulse 1.5s ease-in-out infinite;
}
@keyframes s-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}
