header, .u-header {
    position: relative;
    z-index: 9999 !important; /* Paksa menu tampil paling depan */
}

.vocab-page { font-family: sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; }
.vocab-header { text-align: center; margin-bottom: 30px; }
.vocab-header .icon { font-size: 3rem; }
.vocab-header h1 { margin: 10px 0 5px 0; color: #1e3a8a; }

/* Styling untuk setiap kata (Boiler, Piston, dll) */
.vocab-main-item { margin-bottom: 15px; border-bottom: 1px solid #e2e8f0; padding-bottom: 10px; }
.vocab-main-title { font-weight: 600; font-size: 1.5em; cursor: pointer; color: #0f172a; list-style: none; outline: none; }
.vocab-main-title::-webkit-details-marker { display: none; } /* Hilangkan panah default */
.vocab-main-title::before { content: '▶'; font-size: 0.8em; margin-right: 10px; color: #64748b; display: inline-block; transition: 0.2s; }
details[open] > .vocab-main-title::before { transform: rotate(90deg); }

/* Konten di dalam dropdown */
.vocab-content { padding: 15px 0 15px 30px; }
.vocab-media { max-width: 100%; border-radius: 8px; margin-bottom: 15px; }

/* Sub-dropdown (Definition, Function, dll) */
.vocab-sub-item { margin-bottom: 10px; }
.vocab-sub-title { 
    font-weight: bold; 
    cursor: pointer; 
    color: #334155; 
    list-style: none; /* Hilangkan panah default bawaan browser */
    outline: none; 
}
.vocab-sub-title::-webkit-details-marker { 
    display: none; /* Hilangkan panah default di Chrome/Safari lawas */
}

/* Tambahkan panah buatan sendiri */
.vocab-sub-title::before { 
    content: '▶'; 
    font-size: 0.75em; /* Sedikit lebih kecil dari judul utama */
    margin-right: 8px; 
    color: #94a3b8; /* Warnanya abu-abu muda agar tidak terlalu mencolok */
    display: inline-block; 
    transition: 0.2s; 
}

/* Putar panah 90 derajat saat dropdown terbuka */
details[open] > .vocab-sub-title::before { 
    transform: rotate(90deg); 
}

.vocab-sub-content { 
    margin-top: 5px; 
    padding-left: 20px; 
    color: #475569; 
    font-size: 0.95rem; 
    line-height: 1.5; 
}