/* =========================================
   YGF STUDIO - MASTER STYLESHEET
   Tema: Dark Mode, Gold & Deep Blue
   ========================================= */

/* --- 1. RESET & GAYA DASAR --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0f19; /* Deep Blue Dark */
    color: #f1f5f9;
    overflow-x: hidden; /* Mencegah scroll menyamping */
}

/* --- 2. TATA LETAK & TRANSISI SPA --- */
.view-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.scrollable-view {
    justify-content: flex-start;
    padding-top: 80px; /* Memberi ruang agar tidak tertutup Navbar */
}

.hidden-view {
    display: none !important;
    opacity: 0;
    transform: translateY(20px);
}

.active-view {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 3. NAVBAR (HEADER) --- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 70px;
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
}

.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: #fff; font-size: 1.2rem;}
.nav-logo-img { 
    height: 38px; 
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4)); /* Glow Emas */
}

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: 0.2s;}
.nav-links a:hover, .nav-links a.active { color: #f59e0b; } /* Hover Emas */

.nav-join-btn { background: #f59e0b; color: #000; padding: 8px 16px; text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: 0.2s; border-radius: 6px;}
.nav-join-btn:hover { background: #d97706; color: #fff; }

/* --- 4. HERO SECTION (HALAMAN DEPAN) --- */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%); /* Cahaya Emas */
}

.hero-subtitle { color: #f59e0b; font-size: 0.9rem; font-weight: 700; letter-spacing: 3px; }
.hero-title { font-size: 5rem; color: #fff; line-height: 1; margin: 15px 0; font-weight: 900; letter-spacing: 1px;}
.hero-desc-box { display: flex; gap: 20px; max-width: 500px; margin-bottom: 30px; }

.gold-line-vertical { width: 3px; background: linear-gradient(to bottom, #f59e0b, #d4af37); border-radius: 2px; }
.gold-line-vertical.short { height: 20px; }

.hero-desc-box p { color: #cbd5e1; font-size: 1rem; line-height: 1.6; }

.hero-buttons { display: flex; gap: 15px; }
.gold-btn { background: linear-gradient(135deg, #f59e0b, #d97706) !important; color: #000 !important; border-radius: 4px !important; font-weight: 800; border: none;}
.gold-btn:hover { background: linear-gradient(135deg, #d97706, #b45309) !important; color: #fff !important; }
.dark-btn { border-radius: 4px !important; border: 1px solid #334155; background: transparent; color: #fff; padding: 14px 32px; font-weight: 600; cursor: pointer; transition: 0.2s;}
.dark-btn:hover { background: #1e293b; }
.dark-btn svg { margin-left: 8px; vertical-align: middle; }


/* --- 5. TEAM SECTION --- */
.team-section { padding: 60px 8%; background: #0b0f19; }
.section-header { display: flex; align-items: center; gap: 15px; margin-bottom: 40px; }
.section-header h2 { color: #fff; font-size: 1.2rem; letter-spacing: 2px; }
.member-count { margin-left: auto; color: #64748b; font-size: 0.8rem; font-weight: 700; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    background: #111827;
    border: 1px solid #1f2937;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    border-radius: 12px;
}
.team-card:hover { border-color: #374151; transform: translateY(-5px); }

.team-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid #f59e0b; 
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    transition: transform 0.3s ease;
}
.team-card:hover .team-avatar { transform: scale(1.05); }

.owner-card { border-color: rgba(245, 158, 11, 0.4); }
.owner-card:hover { border-color: #f59e0b; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1); }

.team-card h3 { color: #f8fafc; font-size: 1.1rem; margin-bottom: 8px; }
.badge { font-size: 0.7rem; padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; font-weight: 700;}
.badge-owner { color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.1); }
.badge-admin { color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.1); }
.discord-id { color: #64748b; font-size: 0.8rem; }


/* --- 6. FOOTER SECTION --- */
.ygf-footer { background: #0a0a0a; padding: 60px 8% 20px 8%; border-top: 1px solid #1f2937; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-brand { max-width: 300px; }
.footer-brand h2 { color: #fff; font-size: 1.2rem; margin-bottom: 15px; }
.footer-brand p { color: #94a3b8; font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
.footer-socials a { color: #cbd5e1; border: 1px solid #334155; padding: 6px 12px; font-size: 0.8rem; text-decoration: none; margin-right: 10px; transition: 0.2s; border-radius: 4px;}
.footer-socials a:hover { background: #1f2937; }
.footer-links h3 { color: #f8fafc; font-size: 0.9rem; margin-bottom: 15px; }
.footer-links a, .footer-contact p { display: block; color: #94a3b8; font-size: 0.85rem; text-decoration: none; margin-bottom: 10px; transition: 0.2s;}
.footer-links a:hover { color: #f59e0b; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 20px; display: flex; justify-content: space-between; color: #64748b; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;}


/* =========================================
   AREA WORKSPACE (TOOLS & BYPASS)
   ========================================= */

/* --- TAMPILAN UMUM WORKSPACE --- */
.workspace-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    align-items: center; /* Memastikan isinya ke tengah */
}

.tool-header {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 20px;
}
.tool-header h2 { color: #ffffff; font-size: 1.5rem; font-weight: 700; }

.back-btn { background: transparent; color: #94a3b8; border: 1px solid #334155; padding: 8px 16px; border-radius: 6px; cursor: pointer; transition: 0.2s; }
.back-btn:hover { background: #334155; color: white; }

/* Kartu Umum */
.downloader-card { background-color: #131c2e; border: 1px solid #1e293b; border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); width: 100%; max-width: 600px;}
.downloader-card h2 { font-size: 20px; margin-bottom: 8px; color: #ffffff; text-align: center; }
.subtitle { font-size: 13px; color: #94a3b8; text-align: center; margin-bottom: 24px; line-height: 1.5; }

/* Input Form */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
label { font-size: 13px; font-weight: 500; color: #cbd5e1; }
textarea { width: 100%; height: 110px; background-color: #0b0f19; border: 1px solid #334155; border-radius: 8px; padding: 12px; color: #f8fafc; font-size: 14px; resize: vertical; outline: none; transition: border-color 0.2s; font-family: monospace; box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);}
textarea:focus { border-color: #4364f7; }

/* Tombol Biru Default */
.btn-primary { width: 100%; background: linear-gradient(135deg, #4364f7, #0052d4); color: white; border: none; border-radius: 8px; padding: 14px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; display: flex; justify-content: center; align-items: center; gap: 10px; box-shadow: 0 4px 12px rgba(67, 100, 247, 0.3); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary svg { margin-right: 8px; }

/* Pesan Status */
.status-message { margin-top: 15px; font-size: 13px; text-align: center; padding: 10px; border-radius: 6px; display: none; }
.status-message.success { display: block; background-color: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.status-message.error { display: block; background-color: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }
.status-message.info { display: block; background-color: rgba(59, 130, 246, 0.15); color: #3b82f6; border: 1px solid rgba(59, 130, 246, 0.3); }


/* --- KARTU AUDIO BYPASS KHUSUS --- */
.bypass-container { padding: 0; overflow: hidden; max-width: 900px; }
.bypass-layout { display: flex; flex-direction: column; }
@media (min-width: 768px) { .bypass-layout { flex-direction: row; } }

.bypass-controls { flex: 1; padding: 25px; border-right: 1px solid #1e293b; }

/* Kontrol Kecepatan & Nada */
.panel-title { font-size: 1.1rem; color: #fff; margin-bottom: 5px; }
.panel-desc { font-size: 0.8rem; color: #94a3b8; margin-bottom: 20px; line-height: 1.4; }

.preset-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
.preset-btn { background: #0f172a; border: 1px solid #334155; color: #cbd5e1; padding: 10px 12px; border-radius: 6px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: 0.2s; }
.preset-btn span { color: #64748b; font-size: 0.75rem; }
.preset-btn:hover { background: #1e293b; border-color: #475569; }
.preset-btn.active { background: rgba(67, 100, 247, 0.1); border-color: #4364f7; color: #ffffff; }
.preset-btn.active span { color: #6fb1fc; }

.slider-group { margin-bottom: 20px; }
.slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.85rem; color: #cbd5e1; }
.highlight-text { color: #6fb1fc; font-weight: 700; }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.7rem; color: #64748b; margin-top: 5px; }

.custom-slider { -webkit-appearance: none; width: 100%; height: 6px; background: #1e293b; border-radius: 3px; outline: none; }
.custom-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: #4364f7; cursor: pointer; box-shadow: 0 0 10px rgba(67, 100, 247, 0.5); }

/* Footer Kontrol Bypass */
.bypass-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; padding-top: 15px; border-top: 1px solid #1e293b; }
.game-speed-box { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); color: #a7f3d0; padding: 8px 12px; border-radius: 6px; font-size: 0.85rem; font-family: monospace; }
.game-speed-box span { color: #10b981; font-weight: bold; font-size: 0.95rem; }
.format-toggle { display: flex; gap: 15px; }

/* =========================================
   DESAIN AUDIO EDITOR (BYPASS) PREMIUM
   ========================================= */
   .bypass-main-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.bp-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 768px) { .bp-grid-container { grid-template-columns: 1fr; } }

/* Kotak Utama Panel */
.bp-panel {
    background: #111520; /* Deep dark blue */
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Header di dalam Panel */
.bp-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}
.bp-header-text h3 { color: #f1f5f9; font-size: 0.9rem; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px; }
.bp-header-text p { color: #64748b; font-size: 0.8rem; }

/* Preset Grid 4 Kolom */
.bp-preset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.bp-preset-btn {
    background: #0b0f19;
    border: 1px solid #1e293b;
    color: #cbd5e1;
    padding: 12px 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: 0.2s;
    line-height: 1.4;
}
.bp-preset-btn span { color: #64748b; font-size: 0.75rem; font-weight: 400; }
.bp-preset-btn:hover { background: #1e293b; }
.bp-preset-btn.active {
    border-color: #f59e0b;
    box-shadow: inset 0 0 0 1px #f59e0b;
}
.bp-preset-btn.active span { color: #f59e0b; font-weight: 700; }

/* Modifikasi Slider agar sesuai mock-up (Aksen Emas) */
.bp-slider-group { margin-bottom: 25px; }
.bp-slider-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.bp-slider-title { display: flex; align-items: center; gap: 8px; color: #f1f5f9; font-size: 0.85rem; font-weight: 600; }
.bp-highlight-val { color: #f59e0b; font-weight: 700; font-size: 1rem; }
.bp-slider-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: #64748b; margin-top: 8px; }

/* CSS Trick untuk Slider Emas */
.bp-custom-slider {
    -webkit-appearance: none;
    width: 100%; height: 6px;
    background: #1e293b;
    border-radius: 4px;
    outline: none;
    accent-color: #f59e0b; /* Warna emas untuk Firefox/Modern browser */
}
.bp-custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #f59e0b;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

/* Footer Box Kiri */
.bp-footer-box {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b0f19;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #1e293b;
}
.bp-roblox-speed { color: #94a3b8; font-size: 0.85rem; }
.bp-roblox-speed span { color: #f59e0b; font-weight: bold; font-size: 0.95rem; }
.bp-format-toggle { display: flex; gap: 15px; }
.bp-radio { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: #cbd5e1; cursor: pointer; }
.bp-radio input { accent-color: #f59e0b; cursor: pointer; }

/* Panel Kanan (Dropzone) */
.bp-dropzone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0b0f19;
    border: 2px dashed #1e293b;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: 0.3s;
    min-height: 200px;
    padding: 20px;
}
.bp-dropzone.dragover { border-color: #f59e0b; background: rgba(245, 158, 11, 0.05); }
.bp-dropzone-content { text-align: center; }
.bp-dropzone-icon {
    width: 60px; height: 60px;
    background: #111520;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}
.bp-dropzone h4 { color: #f1f5f9; font-size: 1.1rem; margin-bottom: 5px; }

/* Tombol Aksi */
.bp-actions { display: flex; gap: 15px; width: 100%; }
.bp-btn-outline {
    flex: 1; display: flex; justify-content: center; align-items: center; gap: 8px;
    background: transparent; border: 1px solid #334155; color: #f1f5f9;
    padding: 14px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.2s;
}
.bp-btn-outline:hover { background: #1e293b; }
.bp-btn-gold {
    flex: 2; display: flex; justify-content: center; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706); color: #000;
    padding: 14px; border-radius: 8px; font-weight: 800; letter-spacing: 1px; border: none; cursor: pointer; transition: 0.2s;
}
.bp-btn-gold:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3); }
.bp-btn-gold:disabled { background: #1e293b; color: #475569; cursor: not-allowed; }

/* Daftar File */
.file-list-container { width: 100%; margin-top: 15px; max-height: 180px; overflow-y: auto; overflow-x: hidden; display: flex; flex-direction: column; gap: 8px; padding-right: 5px; }
.file-list-container::-webkit-scrollbar { width: 6px; }
.file-list-container::-webkit-scrollbar-thumb { background-color: #334155; border-radius: 4px; }
.file-item { background: rgba(30, 41, 59, 0.6); border: 1px solid #334155; padding: 10px 12px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 0.85rem; color: #cbd5e1; width: 100%; max-width: 100%; box-sizing: border-box; }
.file-item-info { display: flex; flex-direction: column; flex: 1; min-width: 0; overflow: hidden; }
.file-item-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; color: #f1f5f9; display: block; width: 100%; }
.file-item-size { color: #64748b; font-size: 0.75rem; margin-top: 2px; }
.file-remove-btn { flex-shrink: 0; background: transparent; border: none; color: #ef4444; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; padding: 5px; border-radius: 4px; transition: background 0.2s; }
.file-remove-btn:hover { background: rgba(239, 68, 68, 0.1); }

/* Tombol Aksi & Progress */
.bypass-action-buttons { display: flex; gap: 12px; margin-top: 20px; width: 100%; justify-content: center; }
.btn-secondary { background: transparent; color: #cbd5e1; border: 1px solid #334155; border-radius: 8px; padding: 12px 20px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }
.btn-secondary:hover { background: #1e293b; color: white; }
.success-btn { background: linear-gradient(135deg, #10b981, #059669); padding: 12px 24px; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer;}
.success-btn:hover:not(:disabled) { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); transform: translateY(-2px); }
.success-btn:disabled { background: #1e293b; color: #475569; cursor: not-allowed; box-shadow: none; transform: none; }

.progress-container { width: 100%; margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.progress-bar-bg { flex: 1; height: 8px; background: #1e293b; border-radius: 4px; overflow: hidden; }
.progress-bar-fill { 
    height: 100%; 
    /* Ubah warna biru menjadi gradasi emas */
    background: linear-gradient(90deg, #f59e0b, #d97706); 
    width: 0%; 
    transition: width 0.3s ease; 
    border-radius: 4px; 
}
.progress-text { font-size: 0.85rem; color: #cbd5e1; font-weight: 600; width: 40px; text-align: right; }

/* =========================================
   DESAIN WORKSPACE / TOOLS PREMIUM
   ========================================= */

/* --- Tools Hero (Judul Atas) --- */
.tools-hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%; /* INI KUNCINYA: Memaksa judul mengambil lebar penuh */
}
@media (min-width: 768px) {
    .tools-hero { 
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center; /* Mengubah ke center agar sejajar rapi secara vertikal */
    }
    .tools-hero-left { 
        max-width: 60%; /* Dilebarkan sedikit agar paragraf leluasa bernapas */
        text-align: left; 
    }
    .tools-hero-right { 
        max-width: 40%; 
        border-left: 2px solid #1e293b; 
        padding-left: 20px; 
    }
}

.highlight-label {
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.tools-hero h2 { color: #f8fafc; font-size: 2.2rem; line-height: 1.2; font-weight: 800; }
.highlight-gold { color: #f59e0b; }
.tools-hero-right p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }

/* --- Garis Pemisah & Tab Menu --- */
.tools-divider {
    position: relative;
    text-align: center;
    margin: 40px 0;
    width: 100%;
}
/* Membuat garis lurus di belakang tab */
.tools-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #1e293b;
    z-index: 1;
}
.tab-menu {
    display: inline-flex;
    position: relative;
    z-index: 2;
    background: #0b0f19; /* Menyamakan warna background body agar garis terpotong */
    padding: 0 15px;
    gap: 15px;
    border: none;
}
.tab-btn {
    background: #111827;
    border: 1px solid transparent;
    padding: 10px 24px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-btn:hover { background: #1e293b; color: #f1f5f9; }
.tab-btn.active {
    background: rgba(245, 158, 11, 0.05); /* Latar emas transparan */
    border: 1px solid rgba(245, 158, 11, 0.3); /* Border emas tipis */
    color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1); /* Efek glow */
}

/* --- Modifikasi Header Kartu (Downloader) --- */
.card-header-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 20px;
}
.card-icon-box {
    width: 50px;
    height: 50px;
    background: #0b0f19;
    border: 1px solid #1e293b;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.card-title-area { flex: 1; }
.card-title-area h3 { color: #f8fafc; font-size: 1.2rem; margin-bottom: 4px; text-align: left; }
.card-title-area .subtitle { margin-bottom: 0; text-align: left; }
.card-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* --- Tombol Unduh Warna Emas Solid --- */
.gold-solid-btn {
    background: #f59e0b !important;
    color: #000 !important;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: 0.2s;
}
.gold-solid-btn:hover:not(:disabled) {
    background: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* --- Efek Waveform Background di Audio Editor --- */
.waveform-bg {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 100px;
    background: repeating-linear-gradient(
        90deg,
        rgba(245, 158, 11, 0) 0px,
        rgba(245, 158, 11, 0.05) 2px,
        rgba(245, 158, 11, 0.15) 3px,
        rgba(245, 158, 11, 0) 4px
    );
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none; /* Agar tidak menghalangi klik */
    opacity: 0.5;
    z-index: 0;
}

/* Pastikan hero-bypass memiliki position relative agar waveform tidak bergeser */
#hero-bypass {
    position: relative;
    overflow: hidden;
}

/* Memastikan teks hero berada di atas waveform */
#hero-bypass .tools-hero-left {
    position: relative;
    z-index: 2;
}

/* --- MINI FOOTER WORKSPACE --- */
.workspace-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px; /* Memberikan jarak jauh dari kotak kartu di atasnya */
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #1e293b; /* Garis tipis pemisah */
}
.wf-left {
    color: #64748b;
    font-size: 0.85rem;
}
.wf-right {
    display: flex;
    gap: 20px;
}
.wf-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.wf-right a:hover {
    color: #f59e0b; /* Menyala emas saat di-hover */
}