/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #121214;
    --bg-lighter: #1e1e24;
    --text-main: #f0f0f0;
    --text-muted: #888899;
    --accent: #ffffff;
    --hover: #6d6d6d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Mencegah web geser kiri-kanan di HP */
}

/* --- NAVBAR --- */
nav {
    position: fixed; 
    top: 0; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 50px; 
    background: rgba(18, 18, 20, 0.95); 
    backdrop-filter: blur(10px); 
    z-index: 1000;
}
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; transition: transform 0.3s ease; }
.logo a:hover .logo-img { transform: scale(1.08); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { 
    color: var(--text-main); 
    text-decoration: none; 
    font-family: 'Oswald', Arial;
    font-size: 14px; 
    font-weight: 700; 
    transition: color 0.3s; 
}
.nav-links a:hover, .nav-links a.active { color: var(--hover); }

/* --- WRAPPERS --- */
.page-wrapper { 
    padding-top: 80px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; /* Ditambahkan agar konten di dalamnya bisa di-center */
}

/* --- HERO SECTION --- */
.hero { position: relative; height: 100vh; display: flex; justify-content: center; align-items: center; overflow: hidden; background-color: var(--bg-dark); }
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 18, 20, 0.4); z-index: 2; }

/* --- SHOP / SERVICE CARDS --- */
.services { padding: 80px 50px; background-color: var(--bg-dark); display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.services-grid { display: flex; justify-content: center; gap: 15px; max-width: 1200px; width: 100%; flex-wrap: wrap; }
.service-card { position: relative; width: 250px; height: 550px; background-color: #1a1a24; border: 1px solid #333; overflow: hidden; cursor: pointer; text-decoration: none; color: white; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 1.5s, box-shadow 0.4s; }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1; transition: transform 0.5s; }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; background: linear-gradient(to top, rgba(10,10,12, 1) 10%, rgba(10,10,12, 0.8) 50%, transparent); z-index: 2; }
.service-card:hover { transform: translateY(-20px) scale(1.02); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(163, 136, 238, 0.4); border-color: var(--accent); z-index: 10; }
.service-card:hover .card-bg { transform: scale(1.1); }
.card-content { position: relative; z-index: 3; padding: 20px; text-align: center; }
.card-number { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: bold; z-index: 3; text-shadow: 2px 2px 5px rgba(0,0,0,0.8); }
.card-content h3 { font-family: 'Oswald', sans-serif; font-size: 22px; margin-bottom: 10px; text-transform: uppercase; }
.card-content p { font-size: 11px; color: #aaa; margin-bottom: 20px; }
.card-icon { font-size: 20px; color: var(--accent); }

/* --- PORTFOLIO SHOWCASE --- */
.portfolio-container { position: relative; width: 100vw; height: 100vh; overflow: hidden; background-color: #fce7ef; transition: background-color 0.5s ease; display: flex; align-items: center; }
.audio-container { position: relative; width: 100vw; height: 100vh; overflow: hidden; background-color: #bccbfa; transition: background-color 0.5s ease; display: flex; align-items: center; }
.bg-decorative-text { position: absolute; font-family: 'Oswald', sans-serif; font-size: 15rem; color: rgba(255, 255, 255, 0.4); font-weight: 800; line-height: 0.8; left: -50px; z-index: 1; transition: all 0.5s ease; }
.char-display { position: absolute; right: 15%; bottom: -5%; height: 90%; z-index: 5; transition: transform 0.5s ease, opacity 0.3s ease; }
.char-display video { height: 100%; object-fit: contain; filter: drop-shadow(10px 10px 15px rgba(0,0,0,0.5)); }
.char-info { position: relative; z-index: 10; margin-left: 10%; color: #111; }
.char-division { font-weight: 800; font-size: 18px; background: #111; color: white; padding: 5px 15px; display: inline-block; border-radius: 20px; margin-bottom: 5px; opacity: 0; animation: slideInLeft 0.5s forwards 0.2s; }
.char-name { font-family: 'Oswald', sans-serif; font-size: 5rem; font-weight: 800; margin: 0; line-height: 1; opacity: 0; animation: slideInLeft 0.5s forwards 0.4s; }
.thumb-selector { position: absolute; right: 3%; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 15px; z-index: 20; }
.thumb-btn { width: 60px; height: 60px; border-radius: 15px; border: 3px solid transparent; cursor: pointer; overflow: hidden; transition: 0.3s; background: #333; }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn.active, .thumb-btn:hover { border-color: #f0f0f0; transform: scale(1.1); box-shadow: 0 0 15px rgba(84, 84, 84, 0.5); }
@keyframes slideInLeft { from { transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
.fade-out { opacity: 0 !important; transform: translateX(50px) !important; }

/* --- PLACEHOLDER PAGES (Audition / About) --- */
.placeholder-page { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; /* Rata Tengah Vertikal */
    align-items: center;     /* Rata Tengah Horizontal */
    text-align: center; 
    padding: 20px; 
}
.placeholder-page h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
    letter-spacing: 2px;
}
.placeholder-page p { 
    max-width: 800px; 
    font-size: 1.2rem; 
    line-height: 1.8; 
    color: var(--text-main);
    margin-bottom: 20px; 
}

/* --- PRICING & FOOTER & GATE & PLAYER (Base) --- */
.pricing-section { padding: 80px 50px; }
.section-title { text-align: center; font-family: 'Oswald', sans-serif; font-size: 2rem; margin-bottom: 50px; color: var(--accent); }
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.price-box { background: var(--bg-lighter); padding: 30px; width: 300px; border-top: 3px solid var(--accent); }
footer { background: #0a0a0c; padding: 50px; font-size: 12px; margin-top: auto; }
.footer-container { display: flex; justify-content: space-around; max-width: 1000px; margin: 0 auto; border-bottom: 1px solid #333; padding-bottom: 30px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; text-transform: capitalize; }
.copyright { text-align: center; margin-top: 20px; color: #555; }

.gate-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9999; pointer-events: none; display: flex; flex-direction: column; }
.gate-panel { width: 100%; height: 50vh; background-color: #0a0a0c; display: flex; justify-content: center; position: relative; transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1); pointer-events: auto; }
.gate-top { align-items: flex-end; border-bottom: 0px solid var(--accent); }
.gate-bottom { align-items: flex-start; border-top: 0px solid var(--accent); }
.gate-container.open .gate-top { transform: translateY(-100%); }
.gate-container.open .gate-bottom { transform: translateY(100%); }
.gate-container.open .gate-panel { pointer-events: none; }

.slide-audio-player { position: fixed; right: 0; bottom: 40px; z-index: 9998; display: flex; align-items: center; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.slide-audio-player.is-hidden { transform: translateX(calc(100% - 40px)); }
.player-toggle-btn { width: 40px; height: 60px; background: rgba(20, 20, 25, 0.85); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 12px 0 0 12px; }
.slide-audio-player.is-hidden #toggle-icon { transform: rotate(180deg); }
.player-inner { width: 280px; background: rgba(20, 20, 25, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); padding: 15px 20px; border-radius: 20px 0 0 20px; }
.player-content { display: flex; align-items: center; gap: 15px; }
.play-btn { width: 40px; height: 40px; background: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.track-info { flex-grow: 1; }
.track-title { font-size: 11px; color: #888; }
.track-artist { font-size: 13px; color: #fff; margin-bottom: 8px; }
.progress-container { height: 3px; background: rgba(255,255,255,0.1); cursor: pointer; }
.progress-bar { height: 100%; width: 0%; background: #fff; }
.hidden { display: none !important; }
.volume-wrapper { display: flex; align-items: center; margin-top: 8px; height: 16px; }
.volume-btn { background: none; border: none; color: #888899; cursor: pointer; margin-right: 8px; }
.volume-slider-container { width: 0px; opacity: 0; overflow: hidden; transition: width 0.4s ease; display: flex; }
.volume-slider-container.show { width: 80px; opacity: 1; }
.volume-slider { -webkit-appearance: none; width: 100%; height: 3px; background: rgba(255, 255, 255, 0.2); }
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 10px; height: 10px; border-radius: 50%; background: #fff; cursor: pointer; }

/* =========================================
   SOCIAL ICONS FOOTER
   ========================================= */
.social-icons-list {
    list-style: none; /* Menghilangkan titik list */
    display: flex;
    gap: 15px; /* Jarak antar icon */
    padding: 0;
    margin: 10px 0 0 0; /* Jarak dari teks divestudio@gmail.com */
}

.social-icons-list li a {
    color: var(--text-muted); /* Warna default (abu-abu) */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Efek saat icon disentuh mouse (Hover) */
.social-icons-list li a:hover {
    color: var(--accent); /* Berubah warna jadi putih/sesuai tema */
    transform: scale(1.15) translateY(-3px); /* Sedikit membesar dan loncat ke atas */
}

/* Class wajib untuk Accessibility (SEO & Pembaca Layar Orang Tunanetra) */
/* Class ini menyembunyikan tulisan 'Email', 'Discord' di layar, tapi tetap terbaca oleh sistem */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =========================================
   📱 MEDIA QUERIES UNTUK HP (MOBILE)
   ========================================= */
@media screen and (max-width: 768px) {
    /* Navbar HP */
    nav { flex-direction: column; padding: 15px; gap: 10px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .page-wrapper { padding-top: 100px; }

    /* Services / Shop HP */
    .services { padding: 40px 20px; }
    .service-card { width: 100%; max-width: 320px; height: 450px; }
    .service-card:hover { transform: translateY(-10px); } 

    /* Portfolio Showcase HP 
    .portfolio-container { flex-direction: column; justify-content: center; padding-top: 80px; }
    .bg-decorative-text { font-size: 5rem; left: 50%; top: 15%; transform: translateX(-50%); width: 100%; text-align: center; line-height: 1.2; }
    
    .char-info { margin-left: 0; text-align: center; z-index: 15; margin-top: 10px; }
    .char-name { font-size: 3.5rem; }
    .char-division { transform: translateY(20px); animation: slideInUp 0.5s forwards 0.2s; }
    .char-name { transform: translateY(20px); animation: slideInUp 0.5s forwards 0.4s; }
    
    .char-display { position: relative; right: auto; bottom: auto; height: 45vh; margin: 0 auto; z-index: 5; }
    
    .thumb-selector { position: absolute; top: auto; right: auto; left: 50%; bottom: 80px; transform: translateX(-50%); flex-direction: row; gap: 10px; }
    .thumb-btn { width: 50px; height: 50px; }*/

    /* Portfolio Showcase HP */
    .portfolio-container { 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; /* Memaksa semua elemen di dalamnya ke tengah */
        padding-top: 60px; 
    }

    .bg-decorative-text { 
        font-size: 5rem; 
        left: 50%; 
        top: 15%; 
        transform: translateX(-50%); 
        width: 100%; 
        text-align: center; 
        line-height: 1.2; 
    }
    
    .char-info { 
        margin-left: 0; 
        text-align: center; 
        z-index: 15; 
        margin-top: 0; 
    }
    .char-name { font-size: 3.5rem; }
    .char-division { transform: translateY(20px); animation: slideInUp 0.5s forwards 0.2s; }
    .char-name { transform: translateY(20px); animation: slideInUp 0.5s forwards 0.4s; }
    
    /* WADAH VIDEO KARAKTER DI HP */
    .char-display { 
        position: relative; 
        right: auto; 
        bottom: auto; 
        height: 45vh; /* Menyesuaikan tinggi video */
        width: 100%; /* Memaksa wadah mengambil layar penuh */
        display: flex; 
        justify-content: center; /* Mengunci video tepat di tengah horizontal */
        margin: 20px 0; /* Memberi jarak atas bawah */
        z-index: 5; 
    }
    
    .thumb-selector { 
        position: absolute; 
        top: auto; 
        right: auto; 
        left: 50%; 
        bottom: 80px; 
        transform: translateX(-50%); 
        flex-direction: row; 
        gap: 15px; 
    }
    
    .thumb-btn { width: 50px; height: 50px; }

    /* Audition / About HP */
    .placeholder-page h1 { font-size: 2rem; }
    .placeholder-page p { font-size: 1rem; }

    /* Pricing HP */
    .pricing-section { padding: 50px 20px; }
    .price-box { width: 100%; }

    /* Footer HP */
    .footer-container { 
        flex-direction: row; /* Mengubah kembali jadi baris */
        flex-wrap: wrap; /* Mengizinkan elemen turun ke bawah jika penuh */
        justify-content: space-between; /* Memberi jarak antara kiri dan kanan */
        align-items: flex-start; /* Rata atas */
        gap: 0; /* Reset gap karena kita pakai margin/width */
        padding: 0 10px; /* Jarak aman dari tepi layar HP */
    }

    /* Membagi 2 kolom link menjadi bersebelahan (kiri & kanan) */
    .footer-links {
        width: 48%; /* Mengambil hampir setengah layar */
    }

    /* Khusus list link sebelah Kiri */
    .footer-container > .footer-links:nth-child(1) {
        align-items: flex-start;
        text-align: left;
    }

    /* Khusus list link sebelah Kanan */
    .footer-container > .footer-links:nth-child(2) {
        align-items: flex-end;
        text-align: right;
    }

    /* Bagian Contact pindah full ke bawah dan rata tengah */
    .footer-contact {
        width: 100%; /* Memaksa elemen ini turun ke baris baru */
        text-align: center;
        margin-top: 40px; /* Jarak dari menu link di atasnya */
        display: flex;
        flex-direction: column;
        align-items: center; /* Memastikan icon sosial media ke tengah */
    }

    /* Audio Player HP */
    .slide-audio-player { bottom: 20px; }
    .player-inner { width: 220px; padding: 10px 15px; }
    .track-artist { font-size: 11px; }

    @keyframes slideInUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
}

/* ====== GALLERY GRID SYSTEM ====== */
.gallery-grid {
    position: absolute;
    right: 5%; /* Jarak dari kanan layar */
    top: 55%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(4, 160px); /* 4 kolom */
    grid-auto-rows: 160px; /* Tinggi kotak */
    gap: 12px;
    z-index: 5;
}

.grid-item {
    background: #222;
    border-radius: 12px; /* Membuat sudut tumpul sesuai gambar */
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar tetap proporsional */
    display: block;
}

/* Membuat item pertama menjadi besar (2x2 kotak) */
.main-item {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item:hover {
    transform: scale(1.03);
    border-color: var(--accent);
    z-index: 10;
}

/* Responsif untuk layar lebih kecil */
@media screen and (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 120px);
        grid-auto-rows: 120px;
    }
}

/* Responsif untuk HP */
@media screen and (max-width: 768px) {
    .gallery-grid {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        width: 90%;
        margin: 20px auto;
        padding-bottom: 100px;
    }
    
    .char-info {
        margin-top: 100px;
    }
    
    .portfolio-container {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }
}

/* CSS MODAL POPUP */
.image-modal {
    display: none; /* Sembunyi secara default */
    position: fixed;
    z-index: 99999; /* Pastikan di atas segalanya */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Latar belakang hitam transparan */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    cursor: zoom-out;
}

.modal-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
    cursor: default;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-popup:hover {
    color: #bbb;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Tambahkan kursor pointer pada grid item agar user tahu bisa diklik */
.grid-item {
    cursor: zoom-in;
}

/* =========================================
   ABOUT & TEAM CREDITS SECTION
   ========================================= */
.about-hero {
    position: relative;
    height: 60vh; /* Sedikit lebih pendek dari hero utama */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('assets/images/meta.jpg') center/cover no-repeat;
    padding: 0 20px;
}

/* Menggunakan overlay yang sama dengan hero kamu */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 18, 20, 0.75); /* Gelap transparan */
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-hero-content p {
    max-width: 700px;
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- TEAM SECTION STYLING --- */
.team-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; /* Jarak antar gambar disesuaikan */
    max-width: 1000px; /* Lebar maksimal grid */
    width: 100%;
}

.team-card {
    position: relative;
    background: transparent; /* Hapus background box */
    border: none; /* Hapus border */
    border-radius: 0; 
    overflow: hidden; /* Penting: agar teks yang tersembunyi tidak meluber */
    cursor: pointer;
    padding: 0;
}

.team-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0)); /* Memberi bayangan pada pinggiran PNG */
}

/* Efek sedikit zoom in pada gambar saat di-hover */
.team-card:hover .team-img {
    transform: scale(1.05);
}

/* --- BAGIAN TEKS NAMA & ROLE --- */
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px 15px;
    text-align: center;
    /* Gradient transparan agar teks terbaca tapi tidak menutupi pinggiran gambar */
    background: linear-gradient(to top, rgba(18, 18, 20, 0.95) 0%, rgba(18, 18, 20, 0.7) 60%, transparent 100%);
    
    /* Inti dari Slide-Up: Posisi awal diturunkan ke bawah layar */
    transform: translateY(101%); 
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Teks muncul (Slide Up) saat gambar disentuh mouse */
.team-card:hover .team-info {
    transform: translateY(0);
}

.team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8); /* Agar lebih terbaca */
}

.team-role {
    font-size: 12px;
    color: var(--text-main);
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- RESPONSIVE MODE (HP) --- */
@media screen and (max-width: 768px) {
    .team-grid {
        /* Mobile: Menjadi 2 Kolom (2x2) */
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .team-name {
        font-size: 16px;
    }
    
    .team-role {
        font-size: 10px;
    }
    
    .team-info {
        padding: 15px 5px 10px;
    }
}

/* --- COMMISSION DETAILS SECTION --- */
.commission-info-section {
    padding: 100px 50px;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
}

.commission-wrapper {
    max-width: 1200px;
    width: 100%;
}

.commission-header {
    margin-bottom: 60px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.commission-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--accent);
    line-height: 1;
}

.commission-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.commission-card {
    background-color: var(--bg-lighter);
    padding: 40px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.commission-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.commission-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.price-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.price-tag span {
    display: block;
    font-size: 1.8rem;
    color: var(--text-main);
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-list li {
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-list li::before {
    content: "— ";
    color: var(--accent);
}

.commission-footer {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}

.commission-footer p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsif HP */
@media screen and (max-width: 768px) {
    .commission-info-section { padding: 60px 20px; }
    .commission-header h2 { font-size: 2rem; }
    .commission-grid { grid-template-columns: 1fr; }
}

/* --- BUTTON ACTION SERVICES --- */
.service-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-vtuber {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bg-dark); /* Teks gelap */
    background-color: var(--accent); /* Background Putih/Aksen */
    padding: 15px 50px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.btn-vtuber:hover {
    background-color: transparent;
    color: var(--accent); /* Teks jadi putih/aksen saat hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Responsif HP */
@media screen and (max-width: 768px) {
    .btn-vtuber {
        width: 90%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

