/* --- CSS VARIABLES --- */
:root {
    --primary: #284469; 
    --primary-hover: #1e3554;
    --accent: #FEC763; 
    --success: #27ae60; 
    --danger: #e74c3c;
    --bg: #f4f7f6; 
    --card-bg: #ffffff;
    --text-dark: #1e3554; 
    --text-muted: #7f8c8d;
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
    --border-radius: 20px;
    --nectar-gold-glow: rgba(254, 199, 99, 0.4);
}

/* --- GLOBAL RESET & TYPOGRAPHY --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: "Poppins", sans-serif; 
}

body { 
    background: var(--bg); 
    color: var(--text-dark); 
    line-height: 1.6; 
    overflow-x: hidden; 
    padding-top: 75px; /* Memberi ruang agar konten tidak tertutup navbar fixed */
}


/* ================= NECTAR NAVBAR CSS ================= */
.nectar-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: rgba(40, 68, 105, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
}

.brand-text h1 {
    color: #ffffff;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.brand-subtitle {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a:hover {
    color: var(--accent);
}

.logout-btn {
    background: #284469;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logout-btn:hover {
    background: #284469;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}


/* ================= PROFILE IMAGE (FIXED) ================= */
.preview-img, #user-profile-img {
    width: 100px;    
    height: 100px;   
    border-radius: 50%; 
    object-fit: cover;  
    border: 3px solid var(--accent);
} 


/* ================= INTERACTIVE BUTTONS ================= */
.btn-premium-passport {
    transition: all 0.3s ease;
}

.btn-premium-passport:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--nectar-gold-glow);
    border-color: #ffffff; 
    color: #ffffff;
}

.btn-premium-passport:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: #ffffff;
}

.btn-premium-passport:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px #284469;
}


/* ================= MEDIA QUERY (HP / TABLET) ================= */
@media (max-width: 768px) {
    /* 1. Sembunyikan subtitle agar logo tidak berdesakan */
    .brand-subtitle {
        display: none; 
    }

    /* 2. Tampilkan Ikon Hamburger */
    .hamburger {
        display: flex; 
    }

    /* Slide Panel Menu */
    .nav-links {
        position: fixed; /* Fixed agar menu menutupi layar penuh */
        top: 75px;
        right: -100%; 
        width: 100%;
        height: calc(100vh - 75px);
        background-color: rgba(40, 68, 105, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
        box-shadow: -5px 10px 20px rgba(0,0,0,0.2);
        z-index: 999;
    }

    /* Saat Class 'active' dipanggil oleh JS */
    .nav-links.active {
        right: 0; 
    }

    .nav-links li a {
        font-size: 1.3rem;
    }

    /* Animasi Hamburger menjadi huruf X */
    .hamburger.toggle span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.toggle span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}
        /* --- ANNOUNCEMENT MARQUEE --- */
        .announcement {
            background: linear-gradient(90deg, var(--accent), #f5b13f); color: #1e3554;
            padding: 10px 20px; text-align: center; font-weight: 600; font-size: 0.9rem;
            overflow: hidden; white-space: nowrap; box-shadow: 0 2px 10px rgba(243, 156, 18, 0.2);
        }
        .announcement span { display: inline-block; animation: marquee 25s linear infinite; }
        @keyframes marquee { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

        /* --- MAIN CONTAINER --- */
        .container { max-width: 1100px; margin: 30px auto; padding: 0 20px; }

        /* --- PROFILE CARD --- */
        .profile-card {
            background: var(--card-bg); padding: 35px; border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg); display: flex; flex-wrap: wrap; gap: 30px;
            align-items: center; border: 1px solid rgba(0,0,0,0.03); margin-bottom: 30px;
            position: relative; overflow: hidden;
        }
        .profile-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
        
        .profile-pic-container { text-align: center; flex-shrink: 0; position: relative; }
        .profile-pic { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 5px solid white; box-shadow: 0 8px 25px rgba(0,0,0,0.1); background: #eee; }
        .edit-btn-overlay { margin-top: -20px; position: relative; padding: 6px 14px; font-size: 0.85rem; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); border-radius: 20px; z-index: 2; }
        
        .profile-info { flex: 1; min-width: 250px; }
        .profile-info h1 { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
        
        .role-badge { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; background: #f1f3f5; color: var(--text-muted); margin-bottom: 15px; border: 1px solid #e9ecef; }
        .role-badge.special { background: #fff8e1; color: #f5b13f; border-color: #fdebd0; box-shadow: 0 2px 8px rgba(243, 156, 18, 0.15); }
        
        .profile-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 15px; background: #f8f9fa; padding: 20px; border-radius: 16px; border: 1px solid #edf2f7; }
        .profile-details-label { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2px; font-weight: 500; }
        .profile-details-val { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); }
        
        .cefr-section { grid-column: 1 / -1; margin-top: 10px; border-top: 1px dashed #ddd; padding-top: 15px; }
        .cefr-title { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; margin-bottom: 10px; }
        .cefr-container { display: flex; gap: 10px; flex-wrap: wrap; }
        .cefr-badge { background: white; color: var(--primary); padding: 6px 14px; border-radius: 10px; font-weight: 600; border: 1px solid #e1e8ed; font-size: 0.9rem; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }

        /* --- DASHBOARD CARDS --- */
        .dashboard-card { background: var(--card-bg); padding: 25px; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); margin-bottom: 25px; border: 1px solid rgba(0,0,0,0.03); }
        .card-gold-top { border-top: 5px solid #C5A021; }
        .card-primary-top { border-top: 5px solid var(--primary); }
        .card-header h3 { color: var(--primary); font-weight: 700; }

        /* --- TABS NAVIGATION --- */
        .tabs-nav { display: flex; gap: 8px; margin-bottom: 30px; border-bottom: 2px solid #edf2f7; overflow-x: auto; white-space: nowrap; padding-bottom: 2px; scrollbar-width: none; }
        .tabs-nav::-webkit-scrollbar { display: none; }
        .tab-btn { background: transparent; border: none; padding: 12px 20px; font-size: 1rem; font-weight: 600; color: var(--text-muted); cursor: pointer; border-radius: 12px 12px 0 0; transition: all 0.3s ease; }
        .tab-btn:hover { color: var(--primary); background: #f8f9fa; }
        .tab-btn.active { color: var(--primary); background: white; border-bottom: 3px solid var(--primary); }
        .tab-content { display: none; animation: fadeIn 0.4s ease; }
        .tab-content.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* --- ACTION GRID (MODULES) ---
        .action-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 20px; }
        .action-card { background: var(--card-bg); border-radius: 16px; padding: 20px; text-decoration: none; display: flex; align-items: center; gap: 15px; box-shadow: var(--shadow-sm); border: 1px solid #edf2f7; transition: all 0.3s ease; }
        .action-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
        .card-gallery { background: linear-gradient(135deg, var(--primary), #1a365d); color: white; border: none; }
        .card-icon { font-size: 1.8rem; background: rgba(0, 33, 71, 0.05); color: var(--primary); width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 14px; flex-shrink: 0; transition: 0.3s; }
        .card-gallery .card-icon { background: rgba(255,255,255,0.2); color: white; }
        .action-card:hover .card-icon { background: var(--primary); color: white; }
        .card-gallery:hover .card-icon { background: rgba(255,255,255,0.3); }
        .card-title { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); }
        .card-gallery .card-title { color: white; }
        .card-desc { color: var(--text-muted); font-size: 0.8rem; margin-top: 3px; font-weight: 400; }
        .card-gallery .card-desc { color: rgba(255,255,255,0.8); } 

        /* --- NEW UI ACTION GRID (MODULES): FUTURE-TECH UI --- */
                .action-grid { 
                    display: grid; 
                    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
                    gap: 12px; 
                    margin-top: 15px;
                    margin-bottom: 20px;
                }
        
                .action-card { 
                    background: rgba(255, 255, 255, 0.85); 
                    backdrop-filter: blur(8px);
                    -webkit-backdrop-filter: blur(8px);
                    border-radius: 10px; 
                    padding: 12px 15px; 
                    text-decoration: none; 
                    display: flex; 
                    align-items: center; 
                    gap: 12px; 
                    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02); 
                    border: 1px solid rgba(203, 213, 225, 0.4); 
                    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    position: relative;
                    overflow: hidden;
                }
        
                .action-card::before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 100%;
                    width: 3px;
                    background: var(--primary);
                    opacity: 0.5;
                    transition: opacity 0.3s ease;
                }
        
                .action-card:hover { 
                    transform: translateY(-2px); 
                    background: #ffffff;
                    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15), 0 0 0 1px rgba(52, 152, 219, 0.2); 
                    border-color: transparent;
                }
        
                .action-card:hover::before {
                    opacity: 1;
                    box-shadow: 2px 0 5px var(--primary);
                }
        
                .card-icon { 
                    font-size: 1.1rem; 
                    background: rgba(0, 33, 71, 0.05); 
                    color: var(--primary); 
                    width: 36px; 
                    height: 36px; 
                    display: flex; 
                    align-items: center; 
                    justify-content: center; 
                    border-radius: 8px; 
                    flex-shrink: 0; 
                    transition: 0.3s; 
                }
        
                .action-card:hover .card-icon { 
                    background: var(--primary); 
                    color: white; 
                    transform: scale(1.05);
                }
        
                .card-title { 
                    font-weight: 600; 
                    font-size: 0.95rem; 
                    color: var(--text-dark); 
                    letter-spacing: 0.3px;
                }
        
                .card-desc { 
                    color: var(--text-muted); 
                    font-size: 0.75rem; 
                    margin-top: 2px; 
                    font-weight: 400; 
                    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
                }
        
                /* Varian Gallery Card (opsional jika masih dipakai) */
                .card-gallery { background: linear-gradient(135deg, var(--primary), #1a365d); border: none; }
                .card-gallery .card-icon { background: #1a365d; color: white; }
                .card-gallery:hover { 
                            background: linear-gradient(135deg, #1a365d, var(--primary)) !important; /* Membalik arah gradasi sebagai efek klik */
                            box-shadow: 0 8px 20px rgba(0, 33, 71, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) !important; 
                        }
                .card-gallery .card-title { color: white; }
                .card-gallery .card-desc { color: rgba(255,255,255,0.8); }
                
        /* --- STATS GRID --- */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 30px; }
        .stat-card { background: white; padding: 20px; border-radius: 16px; box-shadow: var(--shadow-sm); border: 1px solid #edf2f7; text-align: center; display: flex; flex-direction: column; justify-content: center; }
        .stat-card h3 { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; }
        .status-badge { display: inline-block; padding: 8px 15px; border-radius: 10px; font-weight: 700; font-size: 1.05rem; }
        .status-passed { background: #e8f8f5; color: var(--success); border: 1px solid #d1f2eb; }
        .status-progress { background: #fef5e7; color: var(--accent); border: 1px solid #fdebd0; }

        /* --- TIMELINE --- */
        .timeline { border-left: 3px solid #edf2f7; margin: 20px 0 0 15px; padding-left: 30px; position: relative; }
        .timeline-item { margin-bottom: 35px; position: relative; }
        .timeline-item::before { content: "🔒"; position: absolute; left: -48px; top: 0; width: 30px; height: 30px; background: white; border: 3px solid #edf2f7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; z-index: 2; }
        .timeline-item.completed::before { content: "✅"; border-color: var(--success); background: #e8f8f5; }
        .timeline-month { font-size: 0.8rem; font-weight: 600; color: var(--accent); text-transform: uppercase; display: block; margin-bottom: 5px; }
        .timeline-item h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 5px; }
        .timeline-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 12px; }

        /* --- TABLES & RESPONSIVE WRAPPER --- */
        .table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; border: 1px solid #edf2f7; }
        table { width: 100%; min-width: 500px; border-collapse: collapse; background: white; }
        th { background: var(--primary); color: white; padding: 15px; text-align: left; font-size: 0.9rem; font-weight: 600; }
        td { padding: 15px; border-bottom: 1px solid #edf2f7; font-size: 0.9rem; vertical-align: middle; }
        tr:last-child td { border-bottom: none; }
        tr:hover td { background: #f8f9fa; }

        /* --- BUTTONS & MODALS --- */
        .btn { padding: 10px 20px; border-radius: 10px; border: none; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: white; font-family: inherit; }
        .btn-primary { background: var(--primary); }
        .btn-primary:hover { background: var(--primary-hover); box-shadow: 0 4px 10px rgba(0, 33, 71, 0.2); }
        .btn-success { background: var(--success); }
        .btn-success:hover { background: #219653; box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2); }
        .btn-accent { background: var(--accent); }
        .btn-mark { padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; cursor: pointer; border: 1px solid #ddd; background: white; transition: 0.2s; }
        .btn-mark:hover { background: #f8f9fa; }
        .btn-mark.done { background: #e8f8f5; color: var(--success); border-color: #d1f2eb; cursor: default; }
        
        .modal { position: fixed; inset: 0; background: rgba(0,33,71,0.6); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; z-index: 10000; padding: 20px; }
        .modal-content { background: white; padding: 30px; border-radius: 20px; width: 100%; max-width: 420px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); animation: scaleUp 0.3s ease; }
        @keyframes scaleUp { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        
        .modal-label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 6px; margin-top: 15px; }
        .modal-input { width: 100%; padding: 12px 15px; border: 2px solid #edf2f7; border-radius: 10px; font-size: 0.95rem; transition: 0.3s; outline: none; }
        .modal-input:focus { border-color: var(--primary); background: #f8f9fa; }
        .preview-img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; border: 4px solid var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

        /* --- FEEDBACK WIDGET --- */
        .feedback-box { background: #f8f9fa; border-radius: 12px; padding: 20px; border: 1px solid #edf2f7; margin-top: 15px; }
        .score-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed #cbd5e0; margin-bottom: 15px; }
        
        /* --- RANKING EXPLANATION GRID --- */
        .rank-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 15px; }
        .rank-info-item { background: white; padding: 15px; border-radius: 12px; border-left: 5px solid #ddd; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }

        /* --- UTILS & RESPONSIVENESS --- */
        .flex-between { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
        .text-center { text-align: center; }
        .hidden { display: none; }
        .badge { padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
        .badge.graded { background: #e8f8f5; color: var(--success); }
        .badge.checking { background: #fef5e7; color: var(--accent); }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            nav { justify-content: center; flex-direction: column; gap: 15px; padding: 15px; }
            .nav-links { justify-content: center; gap: 10px; margin-top: 5px; }
            .nav-links a { font-size: 0.85rem; padding: 5px 8px; background: rgba(255,255,255,0.1); border-radius: 8px; }
            
            .profile-card { flex-direction: column; text-align: center; padding: 25px; }
            .profile-details { grid-template-columns: 1fr; }
            .cefr-container { justify-content: center; }
            .edit-btn-overlay { transform: translateY(-50%); margin-top: 0; }
            
            .tabs-nav { justify-content: flex-start; }
            .action-grid { 
                            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /* 🌟 Memaksa HP memuat 2 tombol per baris */
                            gap: 10px;
                        }
                        .action-card { padding: 10px; }
                        .card-icon { width: 30px; height: 30px; font-size: 1rem; margin-right: 10px; }
                        .card-title { font-size: 0.85rem; }
                        .card-desc { font-size: 0.7rem; }
                    }
            
            h2 { font-size: 1.3rem; }
            .dashboard-card { padding: 20px; }
        }

        /* --- TICKET TEMPLATE (Hidden from UI, for Canvas Export) --- */
        .ticket-container {
            position: fixed; left: -9999px; top: 0; width: 1080px; height: 1920px;
            background: linear-gradient(180deg, #002147 0%, #000033 100%);
            font-family: "Poppins", sans-serif; color: white;
            display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px;
        }
        .ticket-inner {
            border: 10px solid var(--accent); padding: 50px; border-radius: 50px; width: 100%; height: 100%;
            display: flex; flex-direction: column; align-items: center; position: relative;
        }
        
        /* =====================================================================
           👑 NECTAR PREMIUM PASSPORT BUTTON STYLE (MODERN ACADEMIC)
           ===================================================================== */
        :root {
            --nectar-navy: #002147;
            --nectar-navy-light: #002d62;
            --nectar-gold: #d4af37;
            --nectar-gold-glow: rgba(214, 175, 55, 0.35);
            --text-white: #faf9f6;
        }
        
        /* Wadah Panel Utama Bergaya Apple Wallet / Dashboard Discord */
        .nectar-passport-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 18px 22px; /* Dibuat sedikit lebih ramping kontras dashboard */
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            
            /* 🌟 KUNCI FIX: Lebar penuh mengikuti teks di atasnya, rata kiri murni */
            width: 100%;
            max-width: 360px; /* Batas lebar ideal agar tetap proporsional */
            margin: 10px 0 0 0; /* Margin atas 10px, bawah-kanan-kiri 0 */
            
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* Teks Label Mikro di Atas Tombol (Prestige Academic Indicator) */
        .academic-badge {
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--nectar-gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.9;
        }
        
        /* Tombol Utama Premium Passport */
        .btn-premium-passport {
            background: linear-gradient(135deg, var(--nectar-navy) 0%, #284469 100%);
            color: var(--text-white);
            font-family: 'Montserrat', 'Arial', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 14px 28px;
            border: 2px solid var(--nectar-gold);
            border-radius: 12px; /* Melengkung modern pas setara Card UI */
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: 0 4px 15px #284469;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            width: 100%; /* Mengikuti lebar batas card secara proporsional */
        }
        
        /* Icon FontAwesome di Dalam Tombol */
        .btn-premium-passport i {
            color: var(--nectar-gold);
            font-size: 1.15rem;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        
        /* Tag Lencana Teks PDF Mini di Dalam Tombol */
        .badge-pdf-tag {
            background: var(--nectar-gold);
            color: var(--nectar-navy);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 4px;
            text-transform: uppercase;
            display: inline-block;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
            margin-left: auto; /* Mendorong lencana PDF rapi ke sudut kanan tombol */
        }
        
        /* -----------------------------------------------------------------
           🔥 EFEK INTERAKSI ANIMASI (HOVER & ACTIVE STATE LOGIC)
           ----------------------------------------------------------------- */
        
        /* Efek Angkat Saat Kursor Mendekat */
        .btn-premium-passport:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px var(--nectar-gold-glow);
            border-color: #ffffff; /* Garis emas berubah menjadi putih terang berkilau */
            color: #ffffff;
        }
        
        /* Efek Icon Berputar Halus Saat Hover */
        .btn-premium-passport:hover i {
            transform: scale(1.15) rotate(-5deg);
            color: #ffffff;
        }
        
        /* Efek Ambles Saat Tombol Diklik (Feedback Tekanan Nyata) */
        .btn-premium-passport:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }
        
        .preview-img, #user-profile-img {
            width: 100px;    /* Sesuaikan ukuran */
            height: 100px;   /* Sesuaikan ukuran agar sama dengan lebar */
            border-radius: 50%; /* Membuat jadi bulat sempurna */
            object-fit: cover;  /* KUNCI UTAMA: Memotong bagian pinggir agar proporsi terjaga */
            object-position: center; /* Memastikan fokus gambar ada di tengah */
        }
