:root {
    --bg-body: #f0f9fa; --text-main: #123647; --header-text: #ffffff;
    --title-color: #085a77; --footer-bg: #e3f2f5; --footer-text: #41616e;
    --modal-bg: rgba(4, 30, 43, 0.72); --modal-content-bg: #ffffff;
    --shadow: rgba(8, 90, 119, 0.16); --card-bg: #ffffff; --accent: #0e7490;
    --danger: #e5484d; --amber: #e9930f; --ok: #16a34a;
    --grad-header: linear-gradient(150deg, #043a52 0%, #0b5d77 45%, #17a2b8 100%);
    --nav-top: #0b5d77;
    --nav-bottom: #043a52;
    --grad-btn: linear-gradient(135deg, #0b5d77 0%, #22b8cf 100%);
    --accent-soft: rgba(14, 116, 144, 0.1); --accent-soft-border: rgba(14, 116, 144, 0.28);
}
[data-theme="dark"] {
    --bg-body: #04161f; --text-main: #d9f0f5; --header-text: #7adeea;
    --title-color: #4cc9dd; --footer-bg: #061e2a; --footer-text: #8fb5c2;
    --modal-content-bg: #0a2836; --shadow: rgba(0,0,0,0.55); --card-bg: #0a2836;
    --accent: #38c3d8;
    --grad-header: linear-gradient(150deg, #021019 0%, #06344a 55%, #0b5d77 100%);
    --nav-top: #06344a;
    --nav-bottom: #021019;
    --grad-btn: linear-gradient(135deg, #0a4a63 0%, #1592ab 100%);
    --accent-soft: rgba(56,195,216,0.12); --accent-soft-border: rgba(56,195,216,0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; background-color: var(--bg-body); }
body { font-family: 'Roboto', system-ui, -apple-system, sans-serif; background: var(--bg-body); color: var(--text-main); min-height: 100vh; overflow-x: hidden; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

header { position: sticky; top: 0; background-image: var(--grad-header); display: flex; justify-content: space-between; align-items: center; padding: 14px 40px; color: #fff; box-shadow: 0 4px 16px var(--shadow); z-index: 50; flex-wrap: wrap; gap: 10px; }
.header-left { display: flex; align-items: center; gap: 20px; font-weight: 700; }
.brand-section { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.nav-pill { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.85rem; font-weight: 600; padding: 7px 14px; border-radius: 20px; background: rgba(255,255,255,0.16); color: #fff; text-decoration: none; transition: background 0.2s ease; border: none; font-family: inherit; }
.nav-pill:hover { background: rgba(255,255,255,0.3); }

.page-head { max-width: 1280px; margin: 0 auto; padding: 42px 22px 10px; text-align: center; }
.eyebrow { font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; }
.page-head h1 { font-size: 1.8rem; color: var(--title-color); margin-bottom: 10px; line-height: 1.3; }
.page-head > p { max-width: 640px; margin: 0 auto; line-height: 1.75; opacity: 0.85; font-size: 0.95rem; }

.filter-tabs { display: flex; justify-content: center; gap: 8px; margin: 22px auto 14px; flex-wrap: wrap; }
.ftab { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 22px; border: 1px solid var(--accent-soft-border); background: var(--card-bg); color: var(--text-main); font-family: inherit; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease; }
.ftab .material-symbols-outlined { font-size: 18px; }
.ftab:hover { transform: translateY(-1px); }
.ftab.active { background-image: var(--grad-btn); color: #fff; border-color: transparent; }

.page-search { display: flex; align-items: center; gap: 10px; max-width: 460px; margin: 0 auto 8px; background: var(--card-bg); border: 1px solid var(--accent-soft-border); border-radius: 30px; padding: 11px 20px; box-shadow: 0 4px 14px var(--shadow); }
.page-search input { flex: 1; border: none; outline: none; background: transparent; color: var(--text-main); font-family: inherit; font-size: 0.95rem; }
.page-search .material-symbols-outlined { color: var(--accent); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 20px 22px 60px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card { background: var(--card-bg); border: 1px solid var(--accent-soft-border); border-radius: 18px; padding: 20px; box-shadow: 0 6px 20px var(--shadow); display: flex; flex-direction: column; gap: 14px; animation: fadeInUp 0.35s ease backwards; }
.empty { grid-column: 1 / -1; text-align: center; padding: 50px 20px; opacity: 0.8; line-height: 1.8; }

.act-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.act-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 10px; font-size: 0.85rem; font-weight: 700; cursor: pointer; border: none; font-family: inherit; text-decoration: none; background-image: var(--grad-btn); color: #fff; transition: filter 0.2s ease, transform 0.15s ease; }
.act-btn .material-symbols-outlined { font-size: 18px; }
.act-btn.wa { background: #25d366; background-image: none; }
.act-btn.ghost { background: transparent; background-image: none; border: 1px solid var(--accent-soft-border); color: var(--text-main); }
.act-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

.tv-head { display: flex; align-items: center; gap: 14px; }
.tv-logo { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; background: var(--accent-soft); flex-shrink: 0; }
.tv-logo-none { display: flex; align-items: center; justify-content: center; color: var(--accent); }
.tv-titles { flex: 1; min-width: 0; }
.tv-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.6px; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; margin-bottom: 5px; background: rgba(14,116,144,0.14); color: var(--accent); }
.tv-badge .material-symbols-outlined { font-size: 14px; }
.tv-nama { font-size: 1.1rem; font-weight: 700; line-height: 1.35; }
.tv-desc { font-size: 0.88rem; line-height: 1.75; opacity: 0.88; }
.tv-info { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; line-height: 1.6; background: var(--accent-soft); border-radius: 12px; padding: 11px 13px; }
.tv-info .material-symbols-outlined { font-size: 19px; color: var(--accent); flex-shrink: 0; }

.ev-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ev-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.6px; padding: 4px 11px; border-radius: 20px; text-transform: uppercase; flex-shrink: 0; }
.ev-badge .material-symbols-outlined { font-size: 15px; }
.ev-badge.akan { background: rgba(14,116,144,0.14); color: var(--accent); }
.ev-badge.berjalan { background: rgba(22,163,74,0.16); color: var(--ok); }
.ev-badge.selesai { background: rgba(120,130,140,0.18); color: #78828c; }
.ev-nama { font-size: 1.12rem; font-weight: 700; line-height: 1.35; }
.ev-tgl { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; font-weight: 600; color: var(--title-color); }
.ev-tgl .material-symbols-outlined { font-size: 19px; color: var(--accent); }
.ev-desc { font-size: 0.88rem; line-height: 1.75; opacity: 0.88; }
.ev-count { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cd-box { background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: 12px; padding: 10px 6px; text-align: center; }
.cd-num { font-size: 1.32rem; font-weight: 800; color: var(--title-color); line-height: 1.2; font-variant-numeric: tabular-nums; }
.cd-lbl { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; opacity: 0.7; margin-top: 2px; }
.ev-note { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent-soft); border: 1px solid var(--accent-soft-border); border-radius: 12px; padding: 13px; font-size: 0.9rem; font-weight: 700; color: var(--title-color); }
.ev-note.selesai { color: #78828c; font-weight: 600; }
.ev-note .material-symbols-outlined { font-size: 20px; }

.br-card { padding: 0; overflow: hidden; }
.br-thumb { position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--accent-soft); overflow: hidden; }
.br-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.br-card:hover .br-thumb img { transform: scale(1.05); }
.br-thumb-none { display: flex; align-items: center; justify-content: center; color: var(--accent); }
.br-thumb-none .material-symbols-outlined { font-size: 46px; opacity: 0.5; }

.br-count { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 5px; background: rgba(0,0,0,0.68); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.br-count .material-symbols-outlined { font-size: 15px; }

.br-kat { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; background: rgba(0,0,0,0.68); color: #fff; }
.br-kat .material-symbols-outlined { font-size: 15px; }

.br-thumb .br-kat { position: absolute; left: 10px; top: 10px; }

.modal .br-kat { background: var(--accent-soft); color: var(--accent); backdrop-filter: none; }

.br-body { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px 20px; flex: 1; }
.br-tgl { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); }
.br-tgl .material-symbols-outlined { font-size: 16px; }
.br-judul { font-size: 1.08rem; font-weight: 700; line-height: 1.45; }
.br-excerpt { font-size: 0.88rem; line-height: 1.75; opacity: 0.85; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.kr-pengirim { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 600; color: var(--title-color); }
.kr-pengirim .material-symbols-outlined { font-size: 19px; color: var(--accent); }
.kr-lokasi { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; opacity: 0.85; }
.kr-lokasi .material-symbols-outlined { font-size: 18px; color: var(--accent); }

.like-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 10px; font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: inherit; background: transparent; border: 1px solid var(--accent-soft-border); color: var(--text-main); transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease; }
.like-btn .material-symbols-outlined { font-size: 19px; color: var(--accent); transition: transform 0.25s cubic-bezier(0.34,1.6,0.64,1); }
.like-btn:hover { transform: translateY(-1px); }
.like-btn.sudah { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.like-btn.sudah .material-symbols-outlined { transform: scale(1.18); }
.like-jumlah { font-variant-numeric: tabular-nums; }

.br-more-wrap { text-align: center; margin-top: 30px; }
.btn-viewall { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 30px; border: 1px solid var(--accent-soft-border); background: var(--card-bg); color: var(--accent); font-family: inherit; font-size: 0.92rem; font-weight: 700; cursor: pointer; box-shadow: 0 4px 14px var(--shadow); transition: transform 0.15s ease, filter 0.2s ease; }
.btn-viewall:hover { transform: translateY(-2px); }

.modal { position: fixed; inset: 0; background: var(--modal-bg); z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(4px); }
.modal.show { opacity: 1; pointer-events: auto; }
.modal-box { background: var(--modal-content-bg); color: var(--text-main); border-radius: 20px; width: 100%; max-width: 720px; max-height: 88vh; overflow-y: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.4); transform: translateY(20px) scale(0.97); transition: transform 0.32s cubic-bezier(0.34,1.3,0.64,1); }
.modal.show .modal-box { transform: translateY(0) scale(1); }
.modal-bar { position: sticky; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--modal-content-bg); padding: 18px 22px 12px; border-bottom: 1px solid var(--accent-soft-border); z-index: 2; }
.modal-bar h2 { font-size: 1.15rem; line-height: 1.4; color: var(--title-color); }
.modal-close { background: var(--accent-soft); border: none; color: var(--accent); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.modal-body { padding: 18px 22px 24px; }
.br-gallery { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.br-gallery img { width: 100%; border-radius: 14px; object-fit: cover; max-height: 420px; background: var(--accent-soft); }

.br-video-wrap { margin-bottom: 18px; }
.br-video-wrap:empty { display: none; }
.br-video-wrap video { width: 100%; max-height: 460px; border-radius: 14px; background: #000; display: block; }
.br-video-nota { display: flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 0.78rem; opacity: 0.75; }
.br-video-nota .material-symbols-outlined { font-size: 16px; }

.br-play { position: absolute; left: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 5px; background: rgba(0,0,0,0.68); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.br-play .material-symbols-outlined { font-size: 15px; }
.br-isi { font-size: 0.95rem; line-height: 1.9; white-space: pre-wrap; opacity: 0.92; }

.info-section { max-width: 980px; margin: 0 auto 60px; padding: 0 22px; text-align: left; }
.info-section h2 { font-size: 1.35rem; color: var(--accent); margin-bottom: 14px; }
.info-section h3 { font-size: 1.05rem; margin: 24px 0 8px; }

.info-section p { line-height: 1.85; margin-bottom: 12px; font-size: 0.95rem; }
.info-section ul { margin: 8px 0 12px; padding-left: 22px; line-height: 1.9; font-size: 0.95rem; }
.info-section a { color: var(--accent); font-weight: 600; }

footer { background: var(--footer-bg); color: var(--footer-text); text-align: center; padding: 26px 20px; font-size: 0.85rem; line-height: 1.8; }
footer a { color: var(--accent); font-weight: 600; text-decoration: none; }

.toast { position: fixed; bottom: 40px; left: 50%; transform: translate(-50%, calc(100% + 60px)); background-image: var(--grad-btn); color: #fff; padding: 12px 24px; border-radius: 50px; font-weight: 500; box-shadow: 0 10px 24px rgba(0,0,0,0.25); display: flex; align-items: center; gap: 10px; transition: bottom 0.4s cubic-bezier(0.68,-0.55,0.265,1.55); z-index: 9999; max-width: 90vw; }
.toast.show { bottom: 30px; }

.bottom-nav { display: none; }
.bn-item { background: none; border: none; color: rgba(255,255,255,0.82); font-family: inherit; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 0.66rem; font-weight: 600; flex: 1; padding: 8px 4px; text-decoration: none; transition: color 0.2s ease; }
.bn-item .material-symbols-outlined { font-size: 24px; }
.bn-item:active, .bn-item:hover { color: #ffffff; }
.bn-center .bn-fab { width: 58px; height: 58px; border-radius: 50%; background-image: var(--grad-btn); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: -28px; box-shadow: 0 6px 16px rgba(0,0,0,0.35); border: 4px solid var(--nav-top); }
.bn-center .bn-fab .material-symbols-outlined { font-size: 28px; }

.sheet-overlay { position: fixed; inset: 0; background: var(--modal-bg); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(4px); display: flex; align-items: flex-end; }
.sheet-overlay.show { opacity: 1; pointer-events: auto; }
.sheet { background: var(--modal-content-bg); width: 100%; border-radius: 24px 24px 0 0; padding: 12px 18px calc(18px + env(safe-area-inset-bottom)); box-shadow: 0 -8px 30px rgba(0,0,0,0.35); transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1); max-width: 560px; margin: 0 auto; max-height: 82vh; overflow-y: auto; }
.sheet-overlay.show .sheet { transform: translateY(0); }
.sheet-handle { width: 44px; height: 5px; border-radius: 3px; background: var(--accent-soft-border); margin: 4px auto 14px; }
.sheet-title { font-weight: 800; font-size: 1.1rem; color: var(--title-color); margin-bottom: 10px; padding: 0 6px; }
.sheet-item { display: flex; align-items: center; gap: 14px; width: 100%; background: none; border: none; font-family: inherit; color: var(--text-main); font-size: 1rem; font-weight: 500; padding: 15px 12px; border-radius: 12px; cursor: pointer; text-align: left; text-decoration: none; }
.sheet-item:active { background: var(--accent-soft); }
.sheet-item .material-symbols-outlined { color: var(--accent); }
.sheet-item .sheet-val { margin-left: auto; font-size: 0.82rem; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 3px 12px; border-radius: 20px; }

@media (max-width: 600px) {
    header { padding: 12px 16px; }
    .page-head { padding-top: 30px; }
    .page-head h1 { font-size: 1.42rem; }
    .grid { grid-template-columns: 1fr; }
    .header-desktop { display: none !important; }
    .nav-back { display: none !important; }
    footer { display: none; }
    body { padding-bottom: 78px; }
    .bottom-nav { display: flex; align-items: center; justify-content: space-around; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; background: linear-gradient(180deg, var(--nav-top) 0%, var(--nav-bottom) 100%); border-top: 1px solid rgba(255,255,255,0.12); box-shadow: 0 -6px 20px rgba(0,0,0,0.28); padding: 6px 6px calc(6px + env(safe-area-inset-bottom)); }
    .modal { padding: 0; align-items: flex-end; }
    .modal-box { max-width: 100%; max-height: 92vh; border-radius: 20px 20px 0 0; }
}
@media (min-width: 1500px) {
    .page-head, .wrap { max-width: 1560px; }
    .info-section { max-width: 1100px; }
    .grid { gap: 24px; }
}
@media (min-width: 2100px) {
    .page-head, .wrap { max-width: 1900px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: opacity 0.3s ease !important; } }

.vd-grup {
    display: flex; align-items: center; gap: 9px;
    margin: 26px 0 13px; font-size: 1.05rem; font-weight: 800;
    color: var(--title-color);
}
.vd-grup:first-child { margin-top: 0; }
.vd-grup .material-symbols-outlined { font-size: 21px; color: var(--accent); }
.vd-grup-jml {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4px;
    padding: 3px 10px; border-radius: 20px;
    background: var(--accent-soft); color: var(--accent);
}

.vd-kartu {
    background: var(--card-bg); border: 1px solid var(--accent-soft-border);
    border-radius: 18px; overflow: hidden; box-shadow: 0 8px 26px var(--shadow);
    display: flex; flex-direction: column;
    animation: fadeInUp 0.35s ease backwards;
}

.vd-sampul {
    position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
    padding: 0; border: none; background: #000; cursor: pointer; overflow: hidden;
}
.vd-sampul img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.35s ease, opacity 0.2s ease;
}
.vd-sampul:hover img { transform: scale(1.05); opacity: 0.85; }
.vd-sampul:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; }

.vd-putar {
    position: absolute; inset: 0; margin: auto;
    width: 62px; height: 44px; border-radius: 12px;
    background: rgba(0,0,0,0.62); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.vd-sampul:hover .vd-putar { background: #ff0000; transform: scale(1.08); }
.vd-putar .material-symbols-outlined { font-size: 32px; }

.vd-durasi {
    position: absolute; right: 8px; bottom: 8px;
    background: rgba(0,0,0,0.78); color: #fff;
    font-size: 0.72rem; font-weight: 700;
    padding: 2px 7px; border-radius: 5px;
}

.vd-main { cursor: default; }
.vd-bingkai { width: 100%; height: 100%; border: 0; display: block; }

.vd-isi { padding: 15px 17px 17px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.vd-judul { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.vd-kanal {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.8rem; color: var(--accent); font-weight: 600;
}
.vd-kanal .material-symbols-outlined { font-size: 16px; }
.vd-desk { font-size: 0.87rem; line-height: 1.7; opacity: 0.85; }
.vd-isi .act-row { margin-top: auto; }

.mz-kepala { display: flex; align-items: center; gap: 13px; margin: 34px 0 15px; }
.mz-kepala .material-symbols-outlined {
    font-size: 30px; color: #fff; background-image: var(--grad-btn);
    width: 50px; height: 50px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mz-kepala h2 { font-size: 1.25rem; color: var(--title-color); }
.mz-kepala p { font-size: 0.87rem; opacity: 0.85; margin-top: 2px; }

.mz-panel {
    background: var(--card-bg); border: 1px solid var(--accent-soft-border);
    border-radius: 18px; box-shadow: 0 8px 26px var(--shadow); overflow: clip;
}
.mz-daftar { display: flex; flex-direction: column; }

.mz-lagu {
    display: flex; align-items: center; gap: 13px; width: 100%;
    padding: 10px 14px; border: none; border-bottom: 1px solid var(--accent-soft-border);
    background: none; color: var(--text-main); font-family: inherit;
    text-align: left; cursor: pointer; transition: background 0.18s ease;
}
.mz-lagu:last-child { border-bottom: none; }
.mz-lagu:hover { background: var(--accent-soft); }
.mz-lagu.aktif { background: var(--accent-soft); }
.mz-lagu img {
    width: 62px; height: 47px; object-fit: cover; border-radius: 9px; flex-shrink: 0;
}
.mz-teks { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mz-judul {
    font-size: 0.92rem; font-weight: 700; line-height: 1.35;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mz-kanal { font-size: 0.76rem; opacity: 0.8; }
.mz-ikon { color: var(--accent); flex-shrink: 0; }
.mz-lagu.aktif .mz-ikon { animation: mzDenyut 1.4s ease-in-out infinite; }
@keyframes mzDenyut { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }

.mz-bar {
    display: flex; gap: 15px; align-items: flex-start;
    padding: 15px; border-bottom: 1px solid var(--accent-soft-border);
    background: var(--card-bg);
    position: sticky; top: 0; z-index: 5;
    box-shadow: 0 6px 16px var(--shadow);
}
.mz-bingkai {
    width: 186px; height: 105px; border: 0; border-radius: 11px;
    flex-shrink: 0; background: #000;
}
.mz-kini { flex: 1; min-width: 0; }
.mz-kini-judul { font-size: 0.98rem; font-weight: 800; line-height: 1.35; }
.mz-kini-kanal { font-size: 0.8rem; opacity: 0.8; margin-top: 2px; }
.mz-tombol { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 11px; }
.mz-tombol .act-btn { padding: 8px 13px; font-size: 0.8rem; }
.mz-tombol .act-btn:disabled { opacity: 0.4; cursor: default; transform: none; }

@media (max-width: 560px) {
    .mz-bar { flex-direction: column; align-items: stretch; }
    .mz-bingkai { width: 100%; height: auto; aspect-ratio: 16 / 9; }
    .vd-grup { font-size: 0.98rem; }
}

.vd-sumber {
    position: absolute; left: 8px; top: 8px;
    background: rgba(0,0,0,0.72); color: #fff;
    font-size: 0.66rem; font-weight: 800; letter-spacing: 0.6px;
    text-transform: uppercase; padding: 3px 9px; border-radius: 20px;

}

.vd-nosampul, .mz-nosampul {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    background: linear-gradient(140deg, #23323b 0%, #121c22 100%);
    color: rgba(255,255,255,0.42);
}
.mz-nosampul {
    width: 62px; height: 47px; border-radius: 9px; flex-shrink: 0;
}
.mz-nosampul .material-symbols-outlined { font-size: 24px; opacity: 0.6; }

.kd-utama {
    display: flex; align-items: center; gap: 15px;
    max-width: 380px; margin: 22px auto 8px;
    padding: 15px 22px; border-radius: 18px;
    background-image: var(--grad-btn); color: #fff;
    text-decoration: none; text-align: left;
    box-shadow: 0 8px 24px var(--shadow);
    transition: transform 0.15s ease, filter 0.2s ease;
}
.kd-utama:hover { transform: translateY(-2px); filter: brightness(1.06); }
.kd-utama .material-symbols-outlined { font-size: 34px; flex-shrink: 0; }
.kd-utama-teks { display: flex; flex-direction: column; }
.kd-utama-lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; opacity: 0.92; }
.kd-utama-num { font-size: 2rem; font-weight: 800; line-height: 1.15; font-variant-numeric: tabular-nums; }
.kd-utama-ket { font-size: 0.8rem; opacity: 0.8; margin-top: 2px; }

.kd-luring {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 20px; padding: 13px 16px; border-radius: 14px;
    background: rgba(233,147,15,0.12); border: 1px solid var(--amber);
    font-size: 0.88rem; line-height: 1.65;
}
.kd-luring .material-symbols-outlined { font-size: 20px; color: var(--amber); flex-shrink: 0; }

.kd-luring[hidden] { display: none; }

.kd-kartu { gap: 13px; }
.kd-head { display: flex; align-items: center; gap: 14px; }
.kd-logo { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; background: var(--accent-soft); flex-shrink: 0; }
.kd-logo-none { display: flex; align-items: center; justify-content: center; color: var(--accent); }
.kd-titles { flex: 1; min-width: 0; }
.kd-nama { font-size: 1.1rem; font-weight: 700; line-height: 1.35; color: var(--text-main); }
.kd-desk { font-size: 0.88rem; line-height: 1.75; opacity: 0.88; }

.kd-nomor-grup { display: flex; flex-direction: column; gap: 9px; }

.kd-nomor {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: 13px;
    border: 1px solid var(--accent-soft-border); background: var(--accent-soft);
    color: var(--text-main); text-decoration: none;
    transition: border-color 0.2s ease, transform 0.15s ease;
}
.kd-nomor:hover { border-color: var(--accent); transform: translateY(-1px); }
.kd-nomor > .material-symbols-outlined { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.kd-nomor-teks { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.kd-nomor-lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; opacity: 0.72; }
.kd-nomor-val {
    font-size: 1.12rem; font-weight: 800; line-height: 1.3;
    color: var(--title-color); font-variant-numeric: tabular-nums;
    overflow-wrap: anywhere;
}
.kd-nomor-go { font-size: 19px; color: var(--accent); opacity: 0.55; flex-shrink: 0; }
.kd-kosong { font-size: 0.85rem; opacity: 0.7; padding: 4px 2px; }
.kd-kartu .act-row { margin-top: auto; }

@media (max-width: 600px) {
    .kd-utama { max-width: none; }
    .kd-utama-num { font-size: 1.8rem; }
}
