body {
    font-family: var(--mv-font-body);
    background: #0d1117;
    color: #e6eef8;
    margin: 0;
}

.mv-home-hero-title {
    font-family: var(--mv-font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.02;
    text-wrap: balance;
    text-shadow: 0 12px 26px rgba(2, 6, 23, 0.48);
}

.mv-home-hero-subtitle {
    font-family: var(--mv-font-ui);
    letter-spacing: 0.02em;
    color: #d1d5db;
}

.mv-home-section-title {
    font-family: var(--mv-font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-wrap: balance;
}

.mv-home-emphasis {
    font-family: var(--mv-font-ui);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.mv-home-archive-banner {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 1.25rem;
    min-height: 1rem;
    background:
        linear-gradient(90deg, rgba(245, 158, 11, 0.88) 0%, rgba(217, 119, 6, 0.72) 22%, rgba(120, 53, 15, 0.54) 52%, rgba(30, 41, 59, 0.72) 78%, rgba(14, 165, 233, 0.52) 100%);
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.18);
}

.mv-home-archive-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 45%, rgba(2, 6, 23, 0.16) 100%);
    pointer-events: none;
}

.mv-recent-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #1f2937;
    background: linear-gradient(145deg, rgba(3, 7, 18, 0.86), rgba(2, 6, 23, 0.58));
    border-radius: 0.75rem;
    padding: 0.6rem 0.7rem;
    color: #e5e7eb;
    transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.mv-recent-card:hover,
.mv-recent-card:focus-visible {
    border-color: #f59e0b;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(3, 7, 18, 0.85));
    transform: translateY(-1px);
}

.mv-recent-card__thumb-wrap {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 0.65rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111827;
}

.mv-recent-card__thumb-wrap--song {
    background: radial-gradient(circle at 25% 15%, #f59e0b 0%, #d97706 35%, #78350f 100%);
    border-color: rgba(251, 191, 36, 0.45);
}

.mv-recent-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv-recent-card__glyph {
    font-family: var(--mv-font-display);
    font-size: 1.35rem;
    line-height: 1;
    color: #fff7ed;
}

.mv-recent-card__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mv-recent-card__title {
    color: #f9fafb;
    font-family: var(--mv-font-ui);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mv-recent-card__meta {
    color: #9ca3af;
    font-size: 0.72rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640px) {
    .mv-home-archive-banner {
        min-height: 0.9rem;
    }

    .mv-recent-card {
        padding: 0.55rem 0.6rem;
    }

    .mv-recent-card__thumb-wrap {
        width: 2.6rem;
        height: 2.6rem;
        min-width: 2.6rem;
    }

    .mv-recent-card__title {
        font-size: 0.9rem;
    }
}

.mv-counter-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(148, 163, 184, 0.34);
    background: linear-gradient(150deg, rgba(17, 24, 39, 0.98) 0%, rgba(17, 24, 39, 0.94) 58%, rgba(51, 65, 85, 0.4) 100%);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.28);
    transition: transform 220ms ease, box-shadow 260ms ease, border-color 220ms ease;
}

.mv-counter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 90% at 12% 5%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 52%);
    opacity: 0.85;
    pointer-events: none;
}

.mv-counter-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.38);
}

.mv-counter-card:hover .mv-counter-card__value {
    transform: translateY(-2px);
}

.mv-counter-card__value {
    transition: transform 220ms ease;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.mv-counter-card__hint {
    color: #9ca3af;
}

.mv-counter-card--amber {
    border-color: rgba(251, 191, 36, 0.48);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.16);
}

.mv-counter-card--amber .mv-counter-card__label {
    color: rgba(254, 243, 199, 0.95);
}

.mv-counter-card--sky {
    border-color: rgba(56, 189, 248, 0.48);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.16);
}

.mv-counter-card--sky .mv-counter-card__label {
    color: rgba(224, 242, 254, 0.95);
}

@media (prefers-reduced-motion: reduce) {
    .mv-counter-card,
    .mv-counter-card__value {
        transition: none;
    }

    .mv-counter-card:hover,
    .mv-counter-card:hover .mv-counter-card__value {
        transform: none;
    }
}
