:root {
    --bg-0: #060a18;
    --bg-1: #081333;
    --bg-2: #10265c;
    --surface: rgba(16, 30, 72, 0.72);
    --surface-strong: rgba(19, 36, 88, 0.94);
    --surface-soft: rgba(12, 24, 60, 0.58);
    --line: rgba(106, 147, 255, 0.34);
    --line-soft: rgba(255, 255, 255, 0.1);
    --text: #f5f9ff;
    --muted: #b7c6ea;
    --primary: #ff6a2b;
    --primary-2: #ffd447;
    --accent: #2ce6ff;
    --ok: #39d888;
    --danger: #ff5b6f;
    --warn: #ffcf59;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-lg: 0 24px 48px rgba(2, 8, 26, 0.45);
    --shadow-md: 0 12px 26px rgba(2, 8, 26, 0.34);
    --player-h: 86px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(1200px 760px at 0% -5%, rgba(44, 230, 255, 0.18), transparent 62%),
        radial-gradient(900px 600px at 90% 4%, rgba(255, 106, 43, 0.19), transparent 60%),
        linear-gradient(165deg, var(--bg-0) 0%, var(--bg-1) 35%, var(--bg-2) 100%);
    line-height: 1.62;
    padding-bottom: calc(var(--player-h) + 1.1rem);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    z-index: -1;
}

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

[hidden] {
    display: none !important;
}

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

button,
input,
textarea {
    font: inherit;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 150;
    border-radius: 0 0 10px 10px;
    padding: 0.55rem 1rem;
    color: #fff;
    background: linear-gradient(120deg, var(--primary), #f03f68);
}

.skip-link:focus {
    left: 1rem;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    line-height: 1.18;
    font-family: "Sora", sans-serif;
}

.section-block {
    margin: clamp(2.2rem, 4.8vw, 4.4rem) auto;
}

.eyebrow {
    margin: 0 0 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff8ea;
    background: linear-gradient(120deg, rgba(255, 106, 43, 0.84), rgba(255, 212, 71, 0.75));
}

.lead {
    margin: 0;
    color: var(--muted);
    max-width: 74ch;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: blur(16px);
    background: rgba(6, 11, 30, 0.7);
    border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.82rem;
    min-width: 0;
}

.brand-mark {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-text strong {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.78rem;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.32rem;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.44rem;
    padding: 0.56rem 0.84rem;
    border-radius: 11px;
    color: #cedaf8;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.24s ease;
}

.main-nav a i {
    width: 16px;
    text-align: center;
    opacity: 0.95;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: linear-gradient(120deg, rgba(44, 230, 255, 0.2), rgba(255, 106, 43, 0.24));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.nav-side {
    display: inline-flex;
    align-items: center;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.38rem 0.78rem;
    border: 1px solid rgba(57, 216, 136, 0.45);
    background: rgba(57, 216, 136, 0.14);
    color: #ddffef;
    font-size: 0.76rem;
    font-weight: 800;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 0 0 rgba(57, 216, 136, 0.64);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    100% {
        box-shadow: 0 0 0 14px rgba(57, 216, 136, 0);
    }
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-section {
    padding-top: 1.6rem;
}

.radio-slider {
    position: relative;
    min-height: clamp(400px, 62vw, 580px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.radio-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 5.3s ease;
}

.radio-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.radio-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(6, 10, 24, 0.9) 10%, rgba(6, 10, 24, 0.42) 60%, rgba(6, 10, 24, 0.84) 100%),
        radial-gradient(900px 360px at 0 100%, rgba(255, 106, 43, 0.24), transparent 70%);
}

.radio-slide-content {
    position: relative;
    z-index: 2;
    padding: clamp(1.4rem, 3.8vw, 3rem);
    max-width: 760px;
}

.radio-slide h1 {
    margin-bottom: 0.95rem;
    font-size: clamp(1.85rem, 4.9vw, 3.35rem);
}

.radio-slide p {
    margin: 0;
    color: #dce7ff;
    max-width: 62ch;
}

.hero-cta {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    padding: 0.72rem 1.08rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(120deg, var(--primary), #f84667 52%, var(--primary-2));
    box-shadow: 0 8px 20px rgba(248, 70, 103, 0.3);
}

.btn-ghost {
    color: #eef4ff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.stat-tile {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    padding: 1rem;
    background: linear-gradient(130deg, rgba(44, 230, 255, 0.14), rgba(255, 106, 43, 0.16));
    box-shadow: var(--shadow-md);
}

.stat-tile span {
    display: block;
    color: #d4e4ff;
    font-size: 0.8rem;
    margin-bottom: 0.24rem;
}

.stat-tile strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.06rem;
}

.notice-card {
    display: flex;
    gap: 0.72rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 207, 89, 0.45);
    background: rgba(255, 207, 89, 0.12);
    color: #ffe5a3;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
}

.section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3.8vw, 2.4rem);
}

.section-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.42rem 0.75rem;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.08);
    color: #f2f7ff;
}

.fetch-time {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.track-card {
    position: relative;
    display: grid;
    grid-template-columns: 86px 1fr auto;
    align-items: center;
    gap: 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    background: var(--surface-strong);
    padding: 0.7rem;
    box-shadow: var(--shadow-md);
}

.track-card-top {
    background: linear-gradient(140deg, rgba(255, 106, 43, 0.24), rgba(44, 230, 255, 0.2) 58%, rgba(19, 36, 88, 0.96));
    border-color: rgba(255, 214, 143, 0.58);
}

.rank-pill {
    position: absolute;
    top: 0.55rem;
    right: 0.62rem;
    border-radius: 999px;
    padding: 0.16rem 0.52rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #10152d;
    background: linear-gradient(120deg, var(--primary-2), #fff1bb);
}

.track-card img {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: 12px;
}

.track-content h3 {
    margin: 0 0 0.24rem;
    font-size: 1rem;
}

.track-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.track-meta {
    margin-top: 0.55rem;
    font-size: 0.8rem;
    color: #d9e6ff;
}

.track-actions {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    cursor: pointer;
    transition: all 0.22s ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
}

.icon-btn.active {
    border-color: rgba(255, 214, 143, 0.65);
    background: linear-gradient(135deg, var(--primary), #f84667);
}

.icon-btn.ghost {
    background: rgba(255, 255, 255, 0.05);
}

.page-hero h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.9rem, 4.4vw, 3rem);
}

.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.surface-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    padding: 1.2rem;
}

.surface-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.metric-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    background: linear-gradient(140deg, rgba(44, 230, 255, 0.16), rgba(255, 106, 43, 0.16));
    padding: 1rem;
}

.metric-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.16rem;
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

.request-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.9rem;
    align-items: start;
}

.request-tips h2 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
}

.request-tips ul {
    margin: 0 0 0.95rem;
    padding-left: 1.1rem;
    color: #f2f7ff;
}

.request-tips p {
    margin: 0;
}

.form-surface {
    padding: 1.2rem;
}

.request-form {
    display: grid;
    gap: 0.86rem;
}

.form-group {
    display: grid;
    gap: 0.42rem;
}

.form-group span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #dce7ff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.7rem 0.82rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(227, 236, 255, 0.68);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(44, 230, 255, 0.62);
    box-shadow: 0 0 0 4px rgba(44, 230, 255, 0.16);
}

.alert {
    border-radius: 13px;
    padding: 0.78rem 0.86rem;
    display: flex;
    gap: 0.66rem;
    margin-bottom: 0.9rem;
}

.alert strong {
    display: block;
    margin-bottom: 0.18rem;
}

.alert p {
    margin: 0;
}

.alert.success {
    border: 1px solid rgba(57, 216, 136, 0.48);
    background: rgba(57, 216, 136, 0.12);
    color: #d7ffe8;
}

.alert.error {
    border: 1px solid rgba(255, 91, 111, 0.5);
    background: rgba(255, 91, 111, 0.12);
    color: #ffdbe1;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.podcast-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    background: var(--surface-strong);
    box-shadow: var(--shadow-md);
}

.podcast-card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
}

.podcast-body {
    padding: 1rem;
}

.podcast-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
}

.podcast-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.27rem 0.64rem;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.podcast-body h2 {
    font-size: 1.05rem;
    margin: 0 0 0.38rem;
}

.podcast-body p {
    margin: 0 0 0.8rem;
    color: var(--muted);
}

audio {
    width: 100%;
    border-radius: 12px;
}

.news-grid-wrap {
    margin-top: 1.4rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.news-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    background: var(--surface-strong);
    box-shadow: var(--shadow-md);
}

.news-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-image-box {
    position: relative;
    overflow: hidden;
}

.news-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(6, 10, 24, 0.42) 100%);
    pointer-events: none;
}

.news-image-box img {
    width: 100%;
    height: 208px;
    object-fit: cover;
    transition: transform 0.36s ease;
}

.news-card:hover .news-image-box img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    z-index: 1;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #10152d;
    background: linear-gradient(120deg, var(--primary-2), #fff2be);
    padding: 0.22rem 0.58rem;
}

.news-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    padding: 0.95rem;
}

.news-date {
    font-size: 0.78rem;
    color: #d2e0ff;
}

.news-card-body h2 {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.32;
}

.news-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.news-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #e6f0ff;
    font-weight: 800;
    font-size: 0.85rem;
}

.news-more i {
    transition: transform 0.2s ease;
}

.news-card:hover .news-more i {
    transform: translateX(3px);
}

.news-detail-head h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.95rem, 4.8vw, 3rem);
}

.news-detail-meta {
    margin-top: 0.95rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.news-detail-meta span,
.news-detail-meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #eff5ff;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0.9rem;
    align-items: start;
}

.news-detail-article {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    background: var(--surface-strong);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.news-detail-cover img {
    width: 100%;
    height: min(460px, 58vw);
    object-fit: cover;
}

.news-detail-content {
    padding: 1.15rem;
    display: grid;
    gap: 0.86rem;
}

.news-detail-content p {
    margin: 0;
    color: #e7f0ff;
}

.news-detail-side {
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    padding: 1rem;
}

.news-detail-side h2 {
    margin-bottom: 0.72rem;
    font-size: 1.08rem;
}

.news-side-list {
    display: grid;
    gap: 0.55rem;
}

.news-side-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 0.6rem;
    align-items: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.46rem;
}

.news-side-item img {
    width: 76px;
    height: 64px;
    border-radius: 9px;
    object-fit: cover;
}

.news-side-item strong {
    display: block;
    font-size: 0.88rem;
    line-height: 1.3;
}

.news-side-item small {
    display: block;
    color: var(--muted);
    margin-top: 0.16rem;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid var(--line-soft);
    background: rgba(8, 14, 36, 0.72);
}

.footer-grid {
    padding-block: 2rem 1.2rem;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.8fr;
    gap: 1.2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-muted {
    margin: 0 0 0.45rem;
    color: #dbebff;
}

.footer-note {
    margin: 0;
    color: var(--muted);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: #dce9ff;
}

.footer-links a:hover {
    color: #fff;
}

.social-list {
    display: flex;
    gap: 0.5rem;
}

.social-list a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.social-list a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid var(--line-soft);
    padding-block: 0.8rem calc(0.8rem + var(--player-h));
    color: var(--muted);
    font-size: 0.84rem;
}

.mini-player {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 90;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(120deg, rgba(44, 230, 255, 0.2), rgba(255, 106, 43, 0.24)),
        rgba(8, 14, 36, 0.92);
    backdrop-filter: blur(12px);
}

.mini-player-inner {
    min-height: var(--player-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.track-state {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.72rem;
}

.track-state img {
    width: 52px;
    height: 52px;
    border-radius: 11px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.track-state strong {
    display: block;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 54vw;
}

.track-state span {
    display: block;
    color: #d3e2ff;
    font-size: 0.8rem;
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.player-actions button {
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    height: 45px;
    padding-inline: 0.9rem;
    cursor: pointer;
}

#radio-player-toggle {
    width: 45px;
    padding: 0;
}

.request-pop-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.44rem;
    font-weight: 700;
}

.request-pop-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 20, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 95;
}

.request-pop-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.request-pop {
    position: fixed;
    right: 1rem;
    bottom: calc(var(--player-h) + 1rem);
    width: min(420px, calc(100% - 2rem));
    border-radius: 18px;
    border: 1px solid var(--line-soft);
    background: rgba(8, 16, 42, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 96;
}

.request-pop.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.request-pop-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.request-pop-head strong {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}

.request-pop-head button {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.request-pop-desc {
    margin: 0 0 0.8rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.request-pop-result {
    margin: 0.2rem 0 0;
    min-height: 1.32rem;
    font-size: 0.86rem;
}

.request-pop-result.is-success {
    color: #a5f4ca;
}

.request-pop-result.is-error {
    color: #ffc3cd;
}

body.request-pop-open {
    overflow: hidden;
}

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

@media (max-width: 1080px) {
    .home-stats,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .track-grid,
    .podcast-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: 84px;
        z-index: 79;
        display: grid;
        gap: 0.42rem;
        padding: 0.72rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(8, 16, 42, 0.96);
        box-shadow: var(--shadow-lg);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 0.72rem;
    }

    .nav-side {
        margin-left: 0.1rem;
    }

    .brand-text small {
        display: none;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-section,
    .request-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .news-image-box img {
        height: 230px;
    }
}

@media (max-width: 720px) {
    .container {
        width: calc(100% - 1.2rem);
    }

    .brand-mark {
        width: 56px;
        height: 56px;
    }

    .brand-text strong {
        font-size: 0.92rem;
    }

    .radio-slide-content {
        padding: 1.2rem;
    }

    .track-card {
        grid-template-columns: 72px 1fr auto;
        padding: 0.62rem;
    }

    .track-card img {
        width: 72px;
        height: 72px;
    }

    .player-actions button {
        height: 42px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-detail-cover img {
        height: 280px;
    }

    .request-pop {
        right: 0.6rem;
        left: 0.6rem;
        width: auto;
    }
}

@media (max-width: 560px) {
    .nav-wrap {
        min-height: 80px;
    }

    .live-pill {
        display: none;
    }

    .home-stats,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .news-image-box img {
        height: 210px;
    }

    .track-card {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .track-card img {
        width: 100%;
        height: 180px;
    }

    .track-actions {
        flex-direction: row;
    }

    .rank-pill {
        top: 0.6rem;
        right: 0.6rem;
    }

    .mini-player-inner {
        align-items: stretch;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        padding-block: 0.55rem;
    }

    .track-state strong {
        max-width: 74vw;
    }

    .player-actions {
        width: 100%;
    }

    .player-actions button {
        flex: 1;
    }

    #radio-player-toggle {
        flex: 0 0 46px;
    }

    .request-pop {
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 18px 18px 0 0;
        width: 100%;
        max-height: min(82vh, 640px);
        overflow-y: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
