/* Styling Khusus Halaman ISO Download */
.file-browser {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem; /* Simetris atas dan bawah */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 3rem;
}

.file-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.file-row.iso-file {
    background: linear-gradient(90deg, rgba(32, 177, 199, 0.06), transparent);
}

.filename {
    font-family: monospace;
    font-size: 0.95rem;
    color: var(--text-main);
}

.file-badge {
    background: rgba(32, 177, 199, 0.15);
    color: var(--accent);
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(32, 177, 199, 0.3);
}

.col-date, .col-size {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.col-action {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.btn-download {
    background: var(--accent);
    color: #050505;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s;
}

.btn-download:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 15px rgba(32, 177, 199, 0.4);
}

.btn-download.secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-download.secondary:hover {
    background: rgba(88, 62, 159, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.describe {
    padding: 2rem 1.5rem;
}

.describe h2, .describe h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.describe p, .describe ul {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.describe ul {
    margin-left: 1.5rem;
}

/* Contributors Section dengan Garis Pembatas Atas */
.contributors-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contributors-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.contributor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    width: 220px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contributor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(32, 177, 199, 0.4);
}

.avatar {
    width: 48px;
    height: 48px;
    background: rgba(32, 177, 199, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem auto;
    border: 1px solid rgba(32, 177, 199, 0.2);
}

.contributor-info h3 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contributor-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .file-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .col-action {
        justify-content: flex-start;
    }
}

/* HERO BANNER ISO */
.iso-hero-banner {
    position: relative; /* Penting agar gambar tidak keluar batas */
    background-color: var(--bg-card);
    border: 1px solid rgba(32, 177, 199, 0.2);
    border-radius: 1rem;
    padding: 4rem 3rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    overflow: hidden; /* Wajib: memotong sudut gambar yang tajam agar melengkung */
}

/* Styling Tag Gambar */
.iso-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan gambar memenuhi seluruh kotak tanpa merusak rasio */
    object-position: center;
    z-index: 0; /* Menempatkan gambar di lapisan paling bawah */
}

/* Gradient Overlay (Agar teks putih tetap terbaca jelas di atas gambar) */
.iso-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.3) 100%);
    z-index: 1; /* Di atas gambar, di bawah teks */
}

/* Styling Teks (Lapisan teratas) */
.iso-hero-content {
    position: relative; 
    z-index: 2; /* Menempatkan teks di atas gambar dan overlay */
    text-align: left;
}

.iso-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.iso-hero-content p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.5;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .iso-hero-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .iso-hero-banner::after {
        /* Menggelapkan area teks di HP karena ruangannya lebih sempit */
        background: linear-gradient(to right, rgba(5, 5, 8, 0.95) 40%, rgba(5, 5, 8, 0.6) 100%);
    }

    .iso-hero-content h1 {
        font-size: 2.2rem;
    }
}
