/* ============================================ */
/* RESET & VARIABEL                             */
/* ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --c-primary: #0b4f6c;
    --c-primary-light: #1a6d8a;
    --c-accent: #2a9d8f;
    --c-accent-soft: #a7e9d4;
    --c-orange: #e76f51;
    --c-purple: #7c4d8a;
    --c-gold: #e9b44c;
    --c-text: #1a2b3c;
    --c-text-soft: #3f5a68;
    --c-muted: #4b6a7a;
    --c-bg-soft: #f2f8fc;
    --c-border-soft: #d6e9f0;
    --c-card-border: #cfe7e6;
    --shadow-card: 0 15px 30px -12px rgba(0, 50, 70, 0.12);
    --shadow-card-hover: 0 28px 40px -15px rgba(0, 70, 100, 0.25);

    /* Warna per EP */
    --ep1: #1e5fa8;
    --ep1-bg: #e7f0fb;
    --ep2: #2a9d8f;
    --ep2-bg: #e3f7f1;
    --ep3: #e76f51;
    --ep3-bg: #fdeae3;
    --ep4: #7c4d8a;
    --ep4-bg: #f3e9f7;
    --ep5: #2a9d8f;
    --ep5-bg: #e3f7f1;
    --ep6: #e63946;
    --ep6-bg: #fde7e9;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(145deg, #f4f9ff 0%, #e8f0fe 100%);
    color: var(--c-text);
    padding: 1.5rem 1.25rem 4rem;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

.container { max-width: 1440px; margin: 0 auto; width: 100%; }

/* ============================================ */
/* HEADER (sama seperti sebelumnya)             */
/* ============================================ */
.header {
    background: linear-gradient(135deg, #0b4f6c 0%, #1a6d8a 50%, #2a9d8f 100%);
    padding: 1.75rem;
    border-radius: 32px;
    box-shadow: 0 20px 32px -12px rgba(11, 79, 108, 0.4);
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.header::before {
    content: "⚕";
    font-size: 10rem;
    position: absolute;
    right: -10px; bottom: -40px;
    opacity: 0.07;
    transform: rotate(12deg);
    pointer-events: none;
}

.header-title-wrap {
    display: flex; align-items: center; gap: 16px;
    z-index: 2; position: relative; min-width: 0; flex: 1 1 auto;
}

.header-logo {
    width: clamp(55px, 12vw, 90px);
    height: clamp(55px, 12vw, 90px);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.header-text { min-width: 0; flex: 1; }

.header-text h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 3.5vw, 2.2rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.header-text .subhead {
    font-size: clamp(0.78rem, 2.2vw, 0.95rem);
    opacity: 0.92;
    margin-top: 6px;
    display: flex; align-items: center; gap: 6px;
    flex-wrap: wrap; line-height: 1.4;
}

.stats-badge {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: flex; gap: 14px;
    font-size: clamp(0.72rem, 2vw, 0.9rem);
    z-index: 2; position: relative; flex-wrap: wrap;
}

.stats-badge span i { margin-right: 5px; color: var(--c-accent-soft); }

/* ============================================ */
/* HERO IMAGE                                   */
/* ============================================ */
.hero-image {
    margin: 0 0 1.75rem 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(11, 79, 108, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.9);
    position: relative;
    background: linear-gradient(135deg, #0b4f6c, #2a9d8f);
}

.hero-image img {
    display: block; width: 100%;
    height: clamp(180px, 35vw, 380px);
    object-fit: cover; object-position: center;
    transition: transform 0.6s ease;
    background-color: #e8f0fe;
}

@media (hover: hover) {
    .hero-image:hover img { transform: scale(1.03); }
}

.hero-image figcaption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.9rem 1.2rem;
    background: linear-gradient(to top, rgba(11, 79, 108, 0.95), rgba(11, 79, 108, 0));
    color: white;
    font-size: clamp(0.82rem, 2.2vw, 0.95rem);
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
}

.hero-image figcaption i { color: var(--c-accent-soft); }

/* ============================================ */
/* QUICK NAV                                    */
/* ============================================ */
.quick-nav {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0.7rem 0.9rem;
    background: white; border-radius: 24px;
    box-shadow: 0 8px 20px -10px rgba(0, 60, 90, 0.15);
    border: 1px solid #cfe7e6;
}

.quick-nav a {
    flex: 1 1 auto; text-align: center;
    padding: 0.7rem 0.9rem;
    border-radius: 16px; text-decoration: none;
    font-weight: 600; font-size: clamp(0.75rem, 2vw, 0.88rem);
    color: var(--c-primary);
    background: #eef7f8;
    border: 1px solid #d0e7ea;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    min-height: 44px; white-space: nowrap;
}

.quick-nav a:hover { background: var(--c-primary); color: white; }

/* ============================================ */
/* MINI STATS                                   */
/* ============================================ */
.mini-stats {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    margin-bottom: 1.25rem;
    background: #e6f2f5;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    width: fit-content;
    font-size: clamp(0.78rem, 2vw, 0.88rem);
    font-weight: 600; color: var(--c-primary);
    border: 1px solid #c2dfe7;
}

.mini-stats i { margin-right: 5px; color: var(--c-accent); }

/* ============================================ */
/* TOOLBAR                                      */
/* ============================================ */
.toolbar {
    display: flex; flex-wrap: wrap; gap: 0.85rem;
    margin-bottom: 2rem; align-items: center;
    justify-content: space-between;
}

.search-box {
    display: flex; align-items: center;
    background: white; border-radius: 60px;
    padding: 0 0.4rem 0 1.2rem;
    box-shadow: 0 8px 20px -8px rgba(0, 60, 90, 0.15);
    border: 1px solid rgba(42, 157, 143, 0.2);
    flex: 1 1 260px; max-width: 440px;
    height: 48px; min-height: 48px;
}

.search-box i { color: var(--c-accent); font-size: 1.05rem; }

.search-box input {
    border: none; padding: 0 0.85rem;
    font-size: 0.95rem; width: 100%; height: 100%;
    outline: none; background: transparent;
    font-family: inherit; color: var(--c-text); min-width: 0;
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.pill {
    background: white;
    border: 1.5px solid #d0e2e9;
    color: #1e4b5e; font-weight: 600;
    padding: 0 1.1rem;
    height: 40px; min-height: 40px;
    border-radius: 50px; font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-family: inherit; white-space: nowrap;
}

.pill i { font-size: 0.82rem; opacity: 0.7; margin: 0; }
.pill:hover { background: #e3f2f0; border-color: var(--c-accent); }
.pill.active { background: var(--c-primary); color: white; border-color: var(--c-primary); }
.pill.active i { opacity: 1; color: var(--c-accent-soft); }

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */
.part-section { margin-bottom: 3rem; scroll-margin-top: 20px; }

.part-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 1.5rem; padding-left: 0.25rem;
}

.part-header .part-icon {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    background: white;
    width: clamp(48px, 10vw, 58px);
    height: clamp(48px, 10vw, 58px);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 18px -8px rgba(0, 80, 100, 0.2);
    color: var(--c-primary);
    border: 1px solid var(--c-card-border);
    flex-shrink: 0;
}

.part-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    letter-spacing: -0.4px;
    color: #0b3f4f;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    line-height: 1.3; min-width: 0;
}

.part-header h2 .part-number {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    background: var(--c-accent); color: white;
    padding: 0.2rem 0.75rem; border-radius: 40px;
    font-weight: 600; white-space: nowrap; flex-shrink: 0;
}

/* ============================================ */
/* EP GRID & EP CARD                            */
/* ============================================ */
.ep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.4rem;
}

.ep-card {
    background: white;
    border-radius: 22px;
    padding: 1.4rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-top: 6px solid;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    will-change: transform;
}

@media (hover: hover) {
    .ep-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
}

/* Warna border-top per EP */
.ep-card.ep-1 { border-top-color: var(--ep1); }
.ep-card.ep-2 { border-top-color: var(--ep2); }
.ep-card.ep-3 { border-top-color: var(--ep3); }
.ep-card.ep-4 { border-top-color: var(--ep4); }
.ep-card.ep-5 { border-top-color: var(--ep5); }
.ep-card.ep-6 { border-top-color: var(--ep6); }

/* EP Head */
.ep-head {
    display: flex; gap: 12px;
    align-items: flex-start;
    margin-bottom: 0.9rem;
}

.ep-badge {
    flex-shrink: 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.55rem 0.85rem;
    border-radius: 50%;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.5px;
}

.ep-1 .ep-badge { background: var(--ep1); }
.ep-2 .ep-badge { background: var(--ep2); }
.ep-3 .ep-badge { background: var(--ep3); }
.ep-4 .ep-badge { background: var(--ep4); }
.ep-5 .ep-badge { background: var(--ep5); }
.ep-6 .ep-badge { background: var(--ep6); }

.ep-title {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    color: #0b2f3b;
}

/* Focus badge */
.ep-focus {
    background: var(--c-bg-soft);
    border-radius: 12px;
    padding: 0.55rem 0.8rem;
    font-size: 0.78rem;
    color: var(--c-text-soft);
    margin-bottom: 1rem;
    display: flex; align-items: flex-start; gap: 6px;
    line-height: 1.45;
    border: 1px solid var(--c-border-soft);
}

.ep-1 .ep-focus { background: var(--ep1-bg); border-color: #c6dbf2; }
.ep-2 .ep-focus { background: var(--ep2-bg); border-color: #c2ebe0; }
.ep-3 .ep-focus { background: var(--ep3-bg); border-color: #f7d5c7; }
.ep-4 .ep-focus { background: var(--ep4-bg); border-color: #e0c8eb; }
.ep-5 .ep-focus { background: var(--ep5-bg); border-color: #c2ebe0; }
.ep-6 .ep-focus { background: var(--ep6-bg); border-color: #f7c8cd; }

.ep-focus i { color: var(--c-accent); margin-top: 2px; flex-shrink: 0; }

/* Dokumen section */
.ep-docs {
    background: #fafdfe;
    border-radius: 14px;
    padding: 0.9rem;
    border: 1px dashed #cfe7e6;
    margin-bottom: 1rem;
    flex: 1;
}

.ep-docs h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b3f4f;
    margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 6px;
    line-height: 1.35;
    flex-wrap: wrap;
}

.ep-docs h4 i { color: var(--c-primary); }
.ep-docs h4 .count {
    font-weight: 500;
    color: var(--c-muted);
    font-size: 0.72rem;
}

.doc-list {
    list-style: none;
    padding: 0; margin: 0;
    counter-reset: doc-counter;
}

.doc-list li {
    counter-increment: doc-counter;
    display: flex; align-items: flex-start;
    gap: 8px;
    padding: 0.55rem 0;
    border-bottom: 1px solid #eef4f6;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--c-text-soft);
}

.doc-list li:last-child { border-bottom: none; }

.doc-list li::before {
    content: counter(doc-counter);
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--c-primary);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}

.ep-1 .doc-list li::before { background: var(--ep1); }
.ep-2 .doc-list li::before { background: var(--ep2); }
.ep-3 .doc-list li::before { background: var(--ep3); }
.ep-4 .doc-list li::before { background: var(--ep4); }
.ep-5 .doc-list li::before { background: var(--ep5); }
.ep-6 .doc-list li::before { background: var(--ep6); }

.doc-text { flex: 1; min-width: 0; }

.mini-drive {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a6d8a, #0b4f6c);
    color: white;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 10px -3px rgba(11, 79, 108, 0.4);
    margin-top: 1px;
}

.mini-drive:hover {
    background: linear-gradient(145deg, #2a9d8f, #1a6d8a);
    transform: scale(1.08);
}

.mini-drive:active { transform: scale(0.94); }

/* Bukti inti */
.ep-bukti {
    background: linear-gradient(135deg, #fff9e6, #fff3cc);
    border-left: 4px solid var(--c-gold);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    font-size: 0.8rem;
    color: #5c4410;
    line-height: 1.5;
    display: flex; align-items: flex-start; gap: 8px;
}

.ep-bukti i {
    color: var(--c-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ep-bukti small {
    display: block;
    margin-top: 5px;
    font-size: 0.72rem;
    opacity: 0.85;
    font-style: italic;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer-note {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 1.4rem 1.6rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    border: 1px solid #c2dde8;
    color: #1e4b5e;
}

.footer-note i { font-size: 1.6rem; color: var(--c-accent); }
.footer-note p { font-weight: 500; font-size: 0.9rem; }
.footer-note .highlight {
    background: var(--c-primary); color: white;
    padding: 0.5rem 1.2rem; border-radius: 60px;
    font-weight: 600; font-size: 0.85rem;
}

.hidden { display: none !important; }

/* ============================================ */
/* OVERLAY MUSIK                                */
/* ============================================ */
.music-overlay {
    position: fixed; inset: 0;
    background: linear-gradient(160deg, #0b4f6c 0%, #062838 100%);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
    padding: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    cursor: pointer; text-align: center;
}

.music-overlay.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.music-logo-container {
    position: relative;
    width: clamp(140px, 40vw, 180px);
    height: clamp(140px, 40vw, 180px);
    display: flex; align-items: center; justify-content: center;
}

.music-logo-container::before,
.music-logo-container::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    background: rgba(42, 157, 143, 0.35);
    animation: pulse-ring 2.5s ease-out infinite;
}

.music-logo-container::after {
    animation-delay: 1.2s;
    background: rgba(167, 233, 212, 0.25);
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

.music-logo {
    width: clamp(110px, 32vw, 150px);
    height: clamp(110px, 32vw, 150px);
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e0f0f0);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.1);
    position: relative; z-index: 2;
}

.music-logo i {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 6px;
}

.music-logo.playing i {
    background: linear-gradient(135deg, var(--c-orange), var(--c-primary));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0;
}

.music-text { color: white; max-width: 480px; }

.music-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.15rem, 4vw, 1.6rem);
    font-weight: 600; letter-spacing: -0.4px;
    margin-bottom: 6px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.music-text p { opacity: 0.88; font-size: clamp(0.85rem, 2.5vw, 1rem); line-height: 1.5; }
.music-hint { margin-top: 10px; font-size: clamp(0.75rem, 2vw, 0.85rem); opacity: 0.65; }

.equalizer {
    display: flex; align-items: flex-end; gap: 4px;
    height: 28px; justify-content: center;
}

.equalizer span {
    width: 5px;
    background: linear-gradient(to top, var(--c-accent-soft), var(--c-accent));
    border-radius: 4px;
    animation: eq-bounce 1s ease-in-out infinite;
}

.equalizer span:nth-child(1) { animation-delay: 0s; height: 60%; }
.equalizer span:nth-child(2) { animation-delay: 0.15s; height: 100%; }
.equalizer span:nth-child(3) { animation-delay: 0.3s; height: 40%; }
.equalizer span:nth-child(4) { animation-delay: 0.45s; height: 80%; }
.equalizer span:nth-child(5) { animation-delay: 0.6s; height: 55%; }

@keyframes eq-bounce {
    0%, 100% { transform: scaleY(0.5); opacity: 0.7; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

/* ============================================ */
/* FLOAT BTN MUSIK                              */
/* ============================================ */
.music-float-btn {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom, 20px));
    right: 20px;
    width: 54px; height: 54px; border-radius: 50%;
    background: linear-gradient(145deg, var(--c-primary), var(--c-accent));
    color: white; border: none; cursor: pointer;
    box-shadow: 0 12px 25px -8px rgba(11, 79, 108, 0.6), 0 0 0 3px rgba(42, 157, 143, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
    opacity: 0; visibility: hidden;
}

.music-float-btn.show { opacity: 1; visibility: visible; }
.music-float-btn:active { transform: scale(0.94); }

/* ============================================ */
/* RESPONSIVE MOBILE                            */
/* ============================================ */
@media (max-width: 700px) {
    body { padding: 0.85rem 0.85rem 5rem; }

    .header { padding: 1rem; border-radius: 20px; flex-direction: column; align-items: stretch; gap: 10px; }
    .header-logo { width: 52px; height: 52px; padding: 4px; }
    .header-text h1 { font-size: 1.05rem; line-height: 1.25; }
    .header-text .subhead { font-size: 0.7rem; }
    .header-text .subhead span { display: none; }

    .stats-badge {
        flex-wrap: nowrap; justify-content: space-between;
        padding: 0.5rem 0.7rem; font-size: 0.66rem;
        border-radius: 14px; gap: 4px;
    }
    .stats-badge span {
        flex: 1 1 0; text-align: center;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }

    .hero-image { border-radius: 16px; border-width: 2px; }
    .hero-image img { height: clamp(140px, 40vw, 200px); }
    .hero-image figcaption { padding: 0.55rem 0.75rem; font-size: 0.72rem; }

    .quick-nav {
        gap: 6px; padding: 0.5rem; border-radius: 16px;
        overflow-x: auto; flex-wrap: nowrap;
        scrollbar-width: none; -webkit-overflow-scrolling: touch;
    }
    .quick-nav::-webkit-scrollbar { display: none; }
    .quick-nav a {
        flex: 0 0 auto; padding: 0.55rem 0.85rem;
        font-size: 0.72rem; border-radius: 12px; min-height: 42px;
    }

    .mini-stats {
        width: 100%; display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px; padding: 0.6rem 0.9rem;
        font-size: 0.68rem; border-radius: 14px;
    }

    .toolbar { flex-direction: column; align-items: stretch; gap: 0.6rem; }
    .search-box { max-width: 100%; width: 100%; height: 46px; min-height: 46px; flex: 0 0 auto; }
    .search-box input { font-size: 0.88rem; height: 46px; }

    .filter-pills {
        display: flex; flex-wrap: nowrap; gap: 6px;
        overflow-x: auto; padding: 2px 2px 8px 2px;
        width: 100%; -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .filter-pills::-webkit-scrollbar { display: none; }
    .pill { flex: 0 0 auto; padding: 0 0.85rem; height: 38px; font-size: 0.78rem; }

    .part-header .part-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 12px; }
    .part-header h2 { font-size: 0.95rem; gap: 6px; }
    .part-header h2 .part-number { font-size: 0.6rem; padding: 0.15rem 0.5rem; }

    .ep-grid { grid-template-columns: 1fr; gap: 1rem; }

    .ep-card { padding: 1.1rem; border-radius: 18px; }
    .ep-badge { width: 48px; height: 48px; font-size: 0.82rem; padding: 0.45rem; }
    .ep-title { font-size: 0.85rem; }
    .ep-focus { font-size: 0.72rem; padding: 0.5rem 0.7rem; }

    .ep-docs { padding: 0.75rem; }
    .ep-docs h4 { font-size: 0.76rem; }
    .doc-list li { font-size: 0.76rem; padding: 0.5rem 0; gap: 6px; }
    .doc-list li::before { width: 18px; height: 18px; font-size: 0.62rem; }
    .mini-drive { width: 28px; height: 28px; font-size: 0.78rem; }

    .ep-bukti { font-size: 0.74rem; padding: 0.65rem 0.8rem; }

    .footer-note {
        padding: 1rem; border-radius: 16px;
        flex-direction: column; align-items: flex-start;
    }
    .footer-note p { font-size: 0.78rem; line-height: 1.5; }
    .footer-note .highlight { font-size: 0.75rem; padding: 0.4rem 0.9rem; }

    .music-float-btn { width: 48px; height: 48px; font-size: 1.1rem; bottom: max(15px, env(safe-area-inset-bottom, 15px)); right: 15px; }
}

@media (max-width: 380px) {
    body { padding: 0.75rem 0.7rem 5rem; }
    .header-text h1 { font-size: 0.98rem; }
    .ep-card { padding: 1rem; }
    .doc-list li { font-size: 0.72rem; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}