/* ============================================================
   إذاعات السعودية — التصميم العام (فاتح — RTL/LTR)
   ============================================================ */
/* لوحة فاتحة مستوحاة من ألوان الشعار: تيل + نعناعي + أخضر النخلة */
:root {
    --bg: #f3faf6;
    --surface: #e9f4ee;
    --card: #ffffff;
    --card-hover: #fbfefc;
    --border: #d8eae0;
    --text: #0e2b23;
    --muted: #58796c;
    --accent: #0fa878;
    --accent-soft: rgba(15, 168, 120, 0.1);
    --accent-deep: #0b7a58;
    --teal: #0f9488;
    --mint: #d7f2e6;
    --gold: #86a824;
    --danger: #d94848;
    --grad-cta: linear-gradient(135deg, #2fbf68, #0f9488);
    --radius: 18px;
    --shadow: 0 12px 32px rgba(14, 43, 35, 0.1);
    --player-h: 84px;
    --font: 'IBM Plex Sans Arabic', 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background:
        radial-gradient(900px 480px at 85% -10%, rgba(47, 224, 152, 0.08), transparent 60%),
        radial-gradient(700px 420px at 0% 0%, rgba(164, 220, 60, 0.05), transparent 55%),
        var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
    padding-bottom: calc(var(--player-h) + 28px);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

svg { display: inline-block; width: 1em; height: 1em; vertical-align: middle; fill: currentColor; }

/* تلاشي خفيف أثناء التنقل بين الصفحات (البث لا ينقطع) */
#page-content { transition: opacity 0.18s ease; }
#page-content.is-leaving { opacity: 0.35; }

/* ── الترويسة ─────────────────────────────────────────────── */
/* سطح المكتب: تخطيط أفقي مدمج (الشعار بجانب النص) حتى تظهر الإذاعات مبكراً */
.hero { padding: 26px 0 30px; }

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}

.hero-text { text-align: center; }

.hero-logo {
    display: block;
    width: min(250px, 60%);
    border-radius: 22px;
    box-shadow: 0 16px 44px rgba(14, 43, 35, 0.22);
    flex-shrink: 0;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-soft); color: var(--accent);
    border: 1px solid rgba(47, 224, 152, 0.25);
    padding: 6px 16px; border-radius: 999px;
    font-size: 0.85rem; font-weight: 600;
    margin-bottom: 18px;
}

.live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(47, 224, 152, 0.5); }
    50%      { box-shadow: 0 0 0 7px rgba(47, 224, 152, 0); }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    background: linear-gradient(120deg, var(--text) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.hero-tagline { color: var(--muted); font-size: 1.1rem; }

/* شرائح الإحصائيات (الزوار وعدد الإذاعات) */
.hero-stats {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 10px; margin-top: 14px;
}

.stat-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--muted);
}

.stat-chip svg { width: 15px; height: 15px; color: var(--accent); }

.stat-chip.chip-now {
    color: var(--accent-deep);
    background: var(--accent-soft);
    border-color: rgba(15, 168, 120, 0.3);
}

/* صف إحصائيات البطاقة (التراكمي + اللحظي) */
.card-stats {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 6px;
    margin-bottom: 12px;
}

.card-stats .listeners-chip, .card-stats .now-chip { margin-bottom: 0; }

/* شريحة "يستمع الآن" اللحظية */
.now-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; font-weight: 600;
    color: var(--accent-deep);
    background: var(--accent-soft);
    border: 1px solid rgba(15, 168, 120, 0.3);
    border-radius: 999px;
    padding: 3px 12px;
}

.now-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.sp-meta .now-chip { font-size: 0.85rem; padding: 6px 16px; }

/* شريحة عدد المستمعين على البطاقة وصفحة الإذاعة */
.listeners-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; font-weight: 600;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 12px;
}

.listeners-chip svg { width: 13px; height: 13px; color: var(--accent); }

.sp-meta .listeners-chip { margin-bottom: 0; font-size: 0.85rem; padding: 6px 16px; }

/* زر المفضلة على البطاقة */
.fav-btn {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.fav-btn svg { width: 16px; height: 16px; }
.fav-btn .ic-heart-fill { display: none; }
.fav-btn:hover { color: #e0526e; border-color: #e0526e; }

.station-card.is-fav .fav-btn { color: #e0526e; background: rgba(224, 82, 110, 0.1); border-color: rgba(224, 82, 110, 0.4); }
.station-card.is-fav .fav-btn .ic-heart { display: none; }
.station-card.is-fav .fav-btn .ic-heart-fill { display: inline-block; }

.station-card { position: relative; }

/* علامة تنبيه تعطل البث */
.stream-warn {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700;
    color: #9c5f08;
    background: rgba(233, 155, 22, 0.12);
    border: 1px solid rgba(233, 155, 22, 0.45);
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 10px;
    animation: modalIn 0.25s ease;
}

.stream-warn svg { width: 13px; height: 13px; }
.sp-meta .stream-warn { margin-bottom: 0; font-size: 0.85rem; padding: 6px 14px; }

.footer-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; margin-bottom: 6px; font-weight: 600;
}

.footer-stats svg { width: 15px; height: 15px; color: var(--accent); }

.footer-link { color: var(--accent-deep); text-decoration: none; font-weight: 600; }
.footer-link:hover { text-decoration: underline; }

.hero-eq {
    display: flex; justify-content: center; align-items: flex-end;
    gap: 5px; height: 30px; margin-top: 18px;
}

.hero-eq span {
    width: 5px; border-radius: 3px;
    background: linear-gradient(to top, var(--accent-deep), var(--accent));
    animation: eq 1.1s ease-in-out infinite;
}

.hero-eq span:nth-child(1) { animation-delay: 0s;    height: 40%; }
.hero-eq span:nth-child(2) { animation-delay: 0.15s; height: 70%; }
.hero-eq span:nth-child(3) { animation-delay: 0.3s;  height: 100%; }
.hero-eq span:nth-child(4) { animation-delay: 0.45s; height: 55%; }
.hero-eq span:nth-child(5) { animation-delay: 0.6s;  height: 85%; }
.hero-eq span:nth-child(6) { animation-delay: 0.25s; height: 45%; }
.hero-eq span:nth-child(7) { animation-delay: 0.5s;  height: 65%; }

@keyframes eq {
    0%, 100% { transform: scaleY(0.4); }
    50%      { transform: scaleY(1); }
}

/* ── شبكة الإذاعات ────────────────────────────────────────── */
.stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
    padding: 10px 0 40px;
}

.station-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 20px 20px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.station-card:hover {
    transform: translateY(-4px);
    background: var(--card-hover);
    border-color: rgba(47, 224, 152, 0.35);
    box-shadow: var(--shadow);
}

.station-card.is-playing {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 14px 44px rgba(47, 224, 152, 0.12);
}

.card-logo-wrap { position: relative; margin-bottom: 16px; }

.card-logo {
    width: 108px; height: 108px;
    border-radius: 26px;
    object-fit: cover;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(14, 43, 35, 0.12);
}

.card-logo-fallback {
    display: flex; align-items: center; justify-content: center;
    font-size: 2.6rem; font-weight: 700;
    color: var(--accent);
    background: linear-gradient(145deg, var(--surface), var(--accent-soft));
}

/* شارة "يعمل الآن" على الشعار */
.playing-badge {
    position: absolute; bottom: -6px; left: -6px;
    display: none;
    align-items: flex-end; gap: 2.5px;
    background: var(--accent);
    border-radius: 10px;
    padding: 7px 8px 6px;
    height: 28px;
    box-shadow: 0 4px 14px rgba(47, 224, 152, 0.45);
}

.station-card.is-playing .playing-badge { display: inline-flex; }

.playing-badge i {
    width: 3px; background: #ffffff; border-radius: 2px;
    animation: eq 0.9s ease-in-out infinite;
    height: 100%;
}

.playing-badge i:nth-child(2) { animation-delay: 0.2s; }
.playing-badge i:nth-child(3) { animation-delay: 0.4s; }

.station-card.is-paused .playing-badge i { animation-play-state: paused; }

.card-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }

.card-desc {
    color: var(--muted);
    font-size: 0.88rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

/* ── أيقونات التواصل ──────────────────────────────────────── */
.card-socials {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; margin-bottom: 18px;
}

.social-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.social-btn svg { width: 16px; height: 16px; }

.social-btn:hover {
    color: #ffffff;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ── أزرار البطاقة ────────────────────────────────────────── */
.card-actions {
    display: flex; gap: 10px; width: 100%; margin-top: auto;
}

.btn-play {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: inherit; font-size: 0.95rem; font-weight: 700;
    color: #ffffff;
    background: var(--grad-cta);
    border: none; border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.btn-play:hover { filter: brightness(1.1); }
.btn-play:active { transform: scale(0.97); }
.btn-play svg { width: 17px; height: 17px; }

.btn-about {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-about svg { width: 19px; height: 19px; }
.btn-about:hover { color: var(--accent); border-color: var(--accent); }

/* حالات زر التشغيل (بطاقة + شريط المشغل) */
.ic-pause, .spinner { display: none; }

.is-playing .btn-play .ic-play,
.player-toggle.is-playing .ic-play { display: none; }

.is-playing .btn-play .ic-pause,
.player-toggle.is-playing .ic-pause { display: inline-block; }

.is-loading .btn-play .ic-play,
.player-toggle.is-loading .ic-play { display: none; }

.is-loading .btn-play .spinner,
.player-toggle.is-loading .spinner { display: inline-block; }

.spinner {
    width: 16px; height: 16px;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.player-toggle .spinner {
    border-color: rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
}

@keyframes spin { to { transform: rotate(360deg); } }

.station-card.is-playing .btn-play-label::after { content: ''; }

/* ── الحالة الفارغة ───────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-icon { font-size: 3.4rem; margin-bottom: 14px; }
.empty-state h2 { color: var(--text); margin-bottom: 8px; }

/* ── التذييل ──────────────────────────────────────────────── */
.site-footer {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    padding: 30px 20px 20px;
    border-top: 1px solid var(--border);
}

/* ── الشريط العلوي: تبديل اللغة والعودة ───────────────────── */
.player-bar[hidden], .toast[hidden] { display: none; }

@keyframes modalIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: none; }
}

.top-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; padding-bottom: 0;
}

.lang-switch, .back-link-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-switch:hover, .back-link-btn:hover { color: var(--accent); border-color: var(--accent); }

.back-icon { width: 15px; height: 15px; }
[dir="rtl"] .back-icon { transform: scaleX(-1); }

/* ── تبويبات التصنيف ──────────────────────────────────────── */
.cat-tabs {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px;
    padding: 4px 0 26px;
}

.cat-tab {
    font-family: inherit; font-size: 0.9rem; font-weight: 600;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cat-tab:hover { color: var(--accent); border-color: var(--accent); }

.cat-tab.is-active {
    color: #ffffff;
    background: var(--grad-cta);
    border-color: transparent;
}

/* ── صفحة الإذاعة المستقلة ────────────────────────────────── */
.card-link {
    display: flex; flex-direction: column; align-items: center;
    color: inherit; text-decoration: none;
}

.station-page { max-width: 720px; padding-bottom: 40px; }

.sp-hero {
    text-align: center;
    padding: 36px 0 30px;
    display: flex; flex-direction: column; align-items: center;
}

.sp-logo { width: 148px; height: 148px; border-radius: 34px; }

.sp-logo.card-logo-fallback { font-size: 3.4rem; }

.sp-name { font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin: 18px 0 10px; }

.sp-meta {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 10px;
    margin-bottom: 24px;
}

.sp-live { margin: 0; }

.badge-cat {
    display: inline-block;
    font-size: 0.82rem; font-weight: 600;
    color: var(--gold);
    background: rgba(164, 220, 60, 0.1);
    border: 1px solid rgba(164, 220, 60, 0.35);
    border-radius: 999px;
    padding: 6px 16px;
}

.sp-play {
    flex: none;
    font-size: 1.05rem;
    padding: 15px 42px;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(47, 224, 152, 0.3);
}

.sp-play svg { width: 20px; height: 20px; }

.station-page.is-playing .playing-badge { display: inline-flex; }
.station-page.is-paused .playing-badge i { animation-play-state: paused; }

.sp-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 26px;
    margin-bottom: 18px;
}

.sp-section h2 {
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.sp-desc { color: var(--muted); font-size: 0.98rem; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
}

.contact-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 0.9rem; font-weight: 600;
    transition: all 0.2s ease;
}

.contact-item:hover { border-color: var(--accent); }
.contact-item:hover .social-btn { color: #ffffff; background: var(--accent); border-color: var(--accent); }
.contact-item .social-btn { flex-shrink: 0; width: 38px; height: 38px; }
.contact-item .social-btn svg { width: 17px; height: 17px; }

/* ── شريط المشغل السفلي ───────────────────────────────────── */
.player-bar {
    position: fixed; bottom: 0; right: 0; left: 0; z-index: 80;
    height: var(--player-h);
    display: flex; align-items: center; gap: 16px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--border);
    animation: slideUp 0.35s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: none; }
}

.player-info { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1; }

.player-logo img, .player-logo .card-logo-fallback {
    width: 52px; height: 52px;
    border-radius: 14px; object-fit: cover;
    border: 1px solid var(--border);
}

.player-logo .card-logo-fallback { display: flex; font-size: 1.4rem; }

.player-meta { display: flex; flex-direction: column; min-width: 0; }

.player-meta strong {
    font-size: 1rem;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.player-status { color: var(--accent); font-size: 0.78rem; }
.player-status.is-error { color: var(--danger); }

.player-toggle {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px;
    color: #ffffff;
    background: var(--grad-cta);
    border: none; border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(47, 224, 152, 0.35);
    transition: transform 0.15s ease, filter 0.2s ease;
}

.player-toggle:hover { filter: brightness(1.1); }
.player-toggle:active { transform: scale(0.94); }
.player-toggle svg { width: 22px; height: 22px; }
.player-toggle .spinner { width: 20px; height: 20px; }

.player-side { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: flex-start; flex-direction: row-reverse; }

/* حاوية فيديو يوتيوب المصغر (تظهر فقط عند تشغيل مصدر يوتيوب) */
.yt-holder {
    display: none;
    width: 118px; height: 66px;
    border-radius: 10px; overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    flex-shrink: 0;
}

.yt-holder.is-visible { display: block; }
.yt-holder iframe { width: 100%; height: 100%; display: block; }

.volume-wrap { display: flex; align-items: center; gap: 8px; }

.volume-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    color: var(--muted);
    background: transparent; border: none; border-radius: 50%;
    cursor: pointer;
}

.volume-btn:hover { color: var(--text); }
.volume-btn svg { width: 20px; height: 20px; }
.volume-btn .ic-mute { display: none; }
.volume-btn.is-muted .ic-vol { display: none; }
.volume-btn.is-muted .ic-mute { display: inline-block; }

#volume-slider {
    width: 110px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* ── إشعار منبثق ──────────────────────────────────────────── */
.toast {
    position: fixed; top: 22px; right: 50%; transform: translateX(50%);
    z-index: 100;
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--danger);
    border-radius: 12px;
    padding: 12px 22px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    animation: modalIn 0.25s ease;
}

/* ── الجوال ───────────────────────────────────────────────── */
/* الجوال: رأس مضغوط جداً — الإذاعات تظهر من أول شاشة بدون تمرير */
@media (max-width: 640px) {
    .top-nav { padding-top: 10px; }
    .lang-switch, .back-link-btn { padding: 5px 13px; font-size: 0.8rem; }

    .hero { padding: 6px 0 4px; }
    .hero-inner { gap: 0; }
    .hero-logo, .hero-eq, .hero-tagline, .hero-badge { display: none; }
    .hero h1 { font-size: 1.45rem; margin-bottom: 0; }
    .hero-stats { margin-top: 6px; }
    .stat-chip { font-size: 0.72rem; padding: 3px 11px; }
    .chip-stations { display: none; }

    /* التبويبات: سطر واحد قابل للتمرير الأفقي */
    .cat-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 10px 0 14px;
        gap: 8px;
    }
    .cat-tabs::-webkit-scrollbar { display: none; }
    .cat-tab { padding: 6px 16px; font-size: 0.82rem; white-space: nowrap; flex-shrink: 0; }

    /* بطاقات مدمجة: إذاعتان بكل سطر وأكبر عدد ظاهر */
    .stations-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 0 30px; }
    .station-card { padding: 14px 10px 12px; border-radius: 14px; }
    .card-logo-wrap { margin-bottom: 10px; }
    .card-logo { width: 64px; height: 64px; border-radius: 15px; }
    .card-logo-fallback { font-size: 1.7rem; }
    .playing-badge { height: 22px; padding: 5px 6px 4px; bottom: -4px; left: -4px; }
    .card-name { font-size: 0.92rem; margin-bottom: 6px; line-height: 1.4; }
    .card-desc, .card-socials { display: none; }
    .card-stats { gap: 4px; margin-bottom: 9px; }
    .listeners-chip, .now-chip { font-size: 0.66rem; padding: 2px 8px; gap: 4px; }
    .listeners-chip { margin-bottom: 0; }
    .listeners-chip svg { width: 11px; height: 11px; }
    .now-dot { width: 6px; height: 6px; }
    .stream-warn { font-size: 0.66rem; padding: 2px 9px; margin-bottom: 8px; }
    .station-card .btn-play-label { display: none; }
    .station-card .btn-play { padding: 9px; border-radius: 10px; }
    .station-card .btn-play svg { width: 15px; height: 15px; }
    .btn-about { width: 38px; border-radius: 10px; }
    .btn-about svg { width: 16px; height: 16px; }

    .player-bar { padding: 0 14px; gap: 10px; }
    #volume-slider { display: none; }
    .yt-holder { width: 88px; height: 50px; }
    .player-logo img, .player-logo .card-logo-fallback { width: 44px; height: 44px; }
}
