/* 1. Pengaturan Halaman */
.mh-intro {
    padding: 40px 0;
    text-align: center;
}
.mh-content {
    padding: 40px 0 60px 0;
}

/* 2. Layout Container */
.mh-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    padding: 0 10px;
}

/* 3. Wrapper Card */
.mh-card-wrapper {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
}

/* 4. Tampilan Card */
.mh-card {
    background: linear-gradient(145deg, #046b00, #003d00);
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 22px;
    border-radius: 18px;
    box-sizing: border-box;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* 5. Ikon di Dalam Card */
.mh-card-icon {
    margin-bottom: 20px;
}

.mh-card-icon svg,
.mh-card-icon i {
    width: 64px;
    height: 64px;
    color: #ffffff;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.mh-card:hover .mh-card-icon svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

/* 6. Judul Card */
.mh-card-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
}

/* 7. Audio Player */
.mh-audio-player {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #f8fafc;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}

/* 8. Lirik */
.mh-lyrics-content {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #f0f0f0;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.mh-lyrics-content pre {
    white-space: pre-wrap;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 9. Tombol & Tabel (bagian bawah) */
.mh-download-buttons,
.mh-document-table {
    margin-top: auto;
    padding-top: 16px;
    width: 100%;
}

/* 10. Style Tombol */
.mh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    gap: 6px;
}

.mh-btn i {
    width: 18px;
    height: 18px;
}

/* Hijau untuk MP3 */
.mh-btn.mh-btn-mp3 {
    background-color: #ffffff;
    color: #004d00;
}
.mh-btn.mh-btn-mp3:hover {
    background-color: #c5f1cc;
}

/* Kuning untuk PDF */
.mh-btn.mh-btn-pdf {
    background-color: #ffd84d;
    color: #333;
    font-size: 0.85rem;
    padding: 8px 12px;
}
.mh-btn.mh-btn-pdf:hover {
    background-color: #ffcc00;
}

/* 11. Tabel Dokumen */
.mh-document-table {
    text-align: left;
    font-size: 0.95rem;
    border-collapse: collapse;
}
.mh-document-table td {
    padding: 10px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mh-document-table tr:last-child td {
    border-bottom: none;
}
.mh-document-table td:last-child {
    text-align: right;
}

/* 12. Responsif */
@media (max-width: 768px) {
    .mh-card {
        padding: 22px 18px;
    }
    .mh-card-title {
        font-size: 1.1rem;
    }
    .mh-card-icon svg {
        width: 56px;
        height: 56px;
    }
}