/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tombol Hamburger */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Sidebar Menu */
/* --- Bagian Sidebar --- */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Posisi awal sembunyi di kiri */
    width: 250px;
    height: 100vh;
    z-index: 1000;
    transition: all 0.4s ease;
    overflow-y: auto;
    
    /* ✨ KUNCI TEMBUS PANDANG BLUR (GLASSMORPHISM) ✨ */
    background: rgba(17, 17, 17, 0.65); /* Warna dasar hitam transparan (Opacity 65%) */
    backdrop-filter: blur(12px);        /* Efek blur kaca di belakang sidebar */
    -webkit-backdrop-filter: blur(12px); /* Supaya support di browser Safari / iOS juga */
    
    /* Opsional: Kasih border tipis di sebelah kanan biar makin tegas batas kacanya */
    border-right: 1px solid rgba(255, 255, 255, 0.07); 
}

/* Pas menu sidebar dapet class .active dari JS abang */
.sidebar.active {
    left: 0; /* Geser masuk ke dalam layar */
}

/* --- Bagian Overlay (Latar Belakang Hitam Transparan) --- */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 998;
}

#overlay.active {
    display: block;
}

.sidebar.active {
    left: 0; /* Slide ke kanan */
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li a {
    display: block;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    background: #fff;
    color: #000;
}

/* ✨ TRIK MENGHILANGKAN GARIS SCROLLBAR DI SIDEBAR ✨ */

/* Untuk Browser Google Chrome, Edge, Safari, dan Opera */
.sidebar::-webkit-scrollbar {
    display: none; /* Sembunyikan total garis scrollbar-nya */
}

/* Untuk Browser Firefox dan IE/Edge Lama */
.sidebar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Foto Profil */
.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Section Utama */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

section {
    margin-bottom: 80px;
}

/* Animasi Skill Badge */
.skills h2 { margin-bottom: 20px; }
.skills ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
}

/* Container Skill */
.skills {
    max-width: 500px;
    margin: 60px auto 0 auto; /* Jarak atas 60px supaya lebih lega */
    text-align: left;
}

/* Biar music box nya ga terlalu besar bawahnya */
.music-box {
    margin-bottom: 20px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Background Bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Warna Masing-masing Skill */
.progress {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.js { background: #f7df1e; box-shadow: 0 0 10px #f7df1e; }      /* Kuning JS */
.nodejs { background: #68a063; box-shadow: 0 0 10px #68a063; }  /* Hijau Node */
.lua { background: #000080; box-shadow: 0 0 10px #000080; }     /* Biru Luau */
.python { background: #3776ab; box-shadow: 0 0 10px #3776ab; }  /* Biru Python */
.web { background: #e34f26; box-shadow: 0 0 10px #e34f26; }     /* Orange HTML/CSS */
/* --- Warna Progress Bar Khusus C++ (Biru Canggih) --- */
.progress.cpp {
    background: #00599C; /* Warna biru official C++ */
    box-shadow: 0 0 10px rgba(0, 89, 156, 0.6); /* Efek glow neon */
}

/* --- Warna Progress Bar Khusus PHP (Ungu Elegan) --- */
.progress.php {
    background: #777BB4; /* Warna ungu official PHP */
    box-shadow: 0 0 10px rgba(119, 123, 180, 0.6); /* Efek glow neon */
}
/* Project Card & Music Player */
/* Container Card */
.project-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
    align-items: center;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    max-width: 550px;
    text-align: left;
    transition: 0.3s;
}

.project-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.project-info h3 {
    margin-bottom: 10px;
    color: #fff;
}

.project-info p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}

/* Bagian Stats (Download & Like) */
.project-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

/* Tombol Aksi */
.project-actions {
    display: flex;
    gap: 15px;
}

.btn-like {
    background: transparent;
    border: 1px solid #ff4757;
    color: #ff4757;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-like:hover {
    background: #ff4757;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.4);
}

.download-btn {
    flex-grow: 1;
    text-align: center;
    background: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.download-btn:hover {
    background: #ddd;
}


/* Overlay */


audio {
    filter: invert(1); /* Biar player-nya jadi putih/hitam cocok sama tema */
    margin-top: 10px;
}

.quick-nav {
    margin-top: 60px;
    text-align: center;
}

.quick-nav h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.nav-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
    text-align: left;
}

.nav-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #fff;
}

.nav-icon {
    font-size: 2rem;
}

.nav-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.nav-text p {
    font-size: 0.75rem;
    color: #888;
}

/* Responsif buat HP */
@media screen and (max-width: 480px) {
    .nav-cards {
        grid-template-columns: 1fr;
    }
}
/* Penyesuaian untuk HP */
@media screen and (max-width: 600px) {
    main {
        padding: 80px 15px;
    }

    .project-stats {
        gap: 15px; /* Kurangi jarak antar stat di HP */
    }

    .project-actions {
        flex-direction: column; /* Tombol jadi tumpuk atas-bawah */
    }

    .skills {
        padding: 0 10px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
}
/* --- DOWNLOADER PAGE STYLES --- */

.downloader-container {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 50px;
}

.back-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.back-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.back-nav a:hover {
    background: #fff;
    color: #000;
}

/* Search Box */
.search-box {
    display: flex;
    gap: 10px;
    margin: 30px 0;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
    font-size: 1rem;
}

.search-box button {
    padding: 0 25px;
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.search-box button:hover {
    background: #ccc;
    transform: scale(1.05);
}

/* Result Card (Mirip Project Card tapi lebih besar) */
.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#vid-thumb {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vid-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.vid-info p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Download Buttons Area */
.download-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-dl {
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
    max-width: 150px;
}

.btn-dl.mp3 {
    background: #f7df1e; /* Warna Kuning JS */
    color: #000;
}

.btn-dl.mp4 {
    background: #fff;
    color: #000;
}

.btn-dl:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

#status-msg {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #00ff00; /* Warna hijau untuk status berhasil */
}

.final-dl {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

/* Responsif HP */
@media screen and (max-width: 600px) {
    .search-box {
        flex-direction: column;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-dl {
        width: 100%;
        max-width: none;
    }
}
/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f0f0f; /* Hitam YouTube Style */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: #1e1e1e;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffeb3b; /* Warna kuning biar cerah */
}

header p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-bottom: 25px;
}

/* Input Group */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: white;
    outline: none;
    transition: 0.3s;
}

input[type="text"]:focus {
    border-color: #ffeb3b;
}

button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #ffeb3b;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #fdd835;
    transform: translateY(-2px);
}

/* Hasil Card */
.card {
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}

.card img {
    margin-bottom: 15px;
    border: 2px solid #333;
}

#videoTitle {
    font-size: 1rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* <-- Tambahkan baris ini bang */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tombol Action */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
}

#downloadNoWm {
    background-color: #2ecc71; /* Hijau Sukses */
    color: white;
}

#downloadMusic {
    background-color: #3498db; /* Biru Info */
    color: white;
}

.btn:hover {
    opacity: 0.9;
}

footer {
    margin-top: 30px;
}

footer a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
}

footer a:hover {
    color: #ffeb3b;
}
/* Style Khusus Tombol Kembali */
.btn-back {
    display: inline-block;
    text-decoration: none;
    background-color: #333; /* Warna gelap standar */
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px; /* Biar bentuknya kapsul/lonjong */
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid #444;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-back:hover {
    background-color: #ffeb3b; /* Berubah kuning pas disentuh mouse */
    color: #000; /* Teks jadi hitam biar kebaca */
    border-color: #ffeb3b;
    transform: scale(1.05); /* Efek sedikit membesar */
}

/* Spotify Cover Style */
.spotify-cover {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

/* Animasi muter pas lagu jalan (opsional) */
.playing {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Custom Player Layout */
.custom-player {
    background: #181818;
    padding: 15px;
    border-radius: 15px;
}

.play-btn {
    background: #1DB954;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: black;
    font-size: 1.2rem;
    cursor: pointer;
    margin-bottom: 10px;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #b3b3b3;
}

#progressBar {
    flex-grow: 1;
    accent-color: #1DB954;
    cursor: pointer;
}

/* Tambahin ini di style.css */
.profile-section h2 {
    color: var(--primary-color); /* Biar warnanya cyan/biru tech kayak fitur lain */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.5); /* Kasih efek glow tipis */
}

/* --- Animasi Muncul ke Atas --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.6s ease-out;
}

/* --- Layout AI Chat --- */
.ai-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
}

#aiProfile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00f2ea;
}

.ai-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #00f2ea;
}

#statusAi {
    font-size: 0.8rem;
    color: #2ecc71;
}

/* --- Chat Box --- */
.chat-box {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
    background: #252525;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

/* Scrollbar biar cantik */
.chat-box::-webkit-scrollbar {
    width: 5px;
}
.chat-box::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

/* --- Bubble Chat --- */
.msg-bot, .msg-user {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.msg-bot {
    align-self: flex-start;
    background: #333;
    color: #fff;
    border-bottom-left-radius: 2px;
}

.msg-user {
    align-self: flex-end;
    background: #00f2ea;
    color: #000;
    border-bottom-right-radius: 2px;
}

/* --- Typing Indicator --- */
#typingIndicator {
    padding: 5px 15px;
    font-size: 0.8rem;
    color: #888;
}

/* --- Input Area --- */
.chat-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.chat-input-group input {
    flex: 1;
    padding: 12px;
    background: #252525;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    outline: none;
}

.chat-input-group button {
    background: #00f2ea;
    color: #000;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-back {
    width: 100%;
    background: transparent;
    color: #888;
    border: 1px solid #444;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-back:hover {
    border-color: #fff;
    color: #fff;
}
/* Tombol Floating AI */
.floating-ai-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #96beb6d5; /* Warna khas Depay */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 242, 234, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-ai-btn img {
    width: 35px;
    height: 35px;
    /* Kalau pake icon font/emoji bisa ganti img jadi span */
}

/* Efek Hover pas dideketin kursor */
.floating-ai-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(193, 228, 227, 0.6);
    background-color: #ffffff;
}

/* Biar pas di HP gak kegedean bang */
@media (max-width: 768px) {
    .floating-ai-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-ai-btn img {
        width: 28px;
        height: 28px;
    }
}
/* Tombol Floating AI */
.floating-ai-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #afd6d5; /* Warna khas Depay */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 242, 234, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Styling Tulisan AI */
.ai-text {
    color: #000; /* Warna hitam biar kontras sama cyan */
    font-weight: 800; /* Bikin tebel biar jelas */
    font-size: 1.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Pake font sistem yang bersih */
    letter-spacing: 1px;
}

/* Efek Hover */
.floating-ai-btn:hover {
    transform: scale(1.1);
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.floating-ai-btn:hover .ai-text {
    color: #00f2ea; /* Balikin warna teks jadi cyan pas hover */
}

/* Responsif buat HP */
@media (max-width: 768px) {
    .floating-ai-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .ai-text {
        font-size: 1rem;
    }
}

/* Container Player Utama */
.spotify-player {
    background: #181818;
    border-radius: 12px;
    padding: 15px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #282828;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.player-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Efek Piringan Hitam (Vinyl) */
.album-art {
    position: relative;
    width: 60px;
    height: 60px;
}

.vinyl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
    transition: transform 0.3s ease;
}

/* Lubang tengah piringan hitam */
.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #181818;
    border-radius: 50%;
    border: 2px solid #333;
}

/* Animasi Muter */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl.playing {
    animation: spin 3s linear infinite;
}

/* Info Lagu & Logo Spotify */
.song-info {
    flex: 1;
    text-align: left;
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spot-logo {
    width: 18px;
}

.song-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #fff;
}

.song-info p {
    margin: 2px 0;
    font-size: 0.8rem;
    color: #b3b3b3;
}

/* Progress Bar Notif Style */
.progress-container {
    background: #4f4f4f;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    margin-top: 8px;
    cursor: pointer;
}

#progressBar {
    background: #1db954 !important; /* Hijau Spotify */
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s linear;
}


.control-btn {
    background: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.control-btn:hover {
    transform: scale(1.1);
}

.product-section {
    margin-top: 50px;    /* Tambah jarak atas biar gak nempel musik */
    margin-bottom: 50px; /* Tambah jarak bawah biar gak nempel Downloader */
    padding: 0 20px;     /* Kasih jarak kanan kiri dikit */
}

.section-title {
    margin-bottom: 25px; /* Jarak antara tulisan 'Produk Depay' ke kotaknya */
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* --- 1. Desain Kontainer Section Bersih (Anti Animasi) --- */
.product-section {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    /* 📌 Kunci mati agar area luar tidak memicu transisi gerak apa pun */
    transition: none !important; 
    transform: none !important;
}

.section-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.title-svg {
    width: 18px;
    height: 18px;
}

/* --- 2. Card Tanpa Background Kotak (Statis Pol) --- */
.product-card-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent; /* 📌 Hilangkan box hitam luar */
    border: none;
    padding: 10px 0;
    transition: none !important; /* 👈 MATIKAN ANIMASI KURSOR PADA CARD */
}

.prod-headline {
    font-size: 1.05rem;
    color: #00bcd4; /* Warna cyan cerah headlinenya */
    margin: 5px 0;
}

.prod-desc {
    font-size: 0.85rem;
    color: #888888;
    margin: 0 0 15px 0;
}

/* --- 3. ANIMASI HANYA DI TOMBOL SAJA (Estetik Minimalis) --- */
.btn-produk-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(33, 150, 243, 0.1); /* Background transparan tipis */
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.25);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    box-sizing: border-box;
    /* 📌 Jalur animasi smooth khusus tombol */
    transition: all 0.2s ease-in-out; 
}

/* Tombol khusus bagian deploy pakai warna cyan */
.btn-deploy-color {
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    border: 1px solid rgba(0, 188, 212, 0.25);
}

/* 🔥 EFEK HOVER NYA SEKARANG PINDAH KE SINI DAN GAK BAKAL MERUSAK LAYOUT */
.btn-produk-clean:hover {
    background: #2196f3; /* Berubah penuh saat kursor nempel */
    color: #ffffff;
    box-shadow: 0 0 12px rgba(33, 150, 243, 0.4);
    transform: translateY(-1px); /* Tombol sedikit naik tipis */
}

.btn-deploy-color:hover {
    background: #00bcd4;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.4);
}

/* Ukuran ikon SVG di dalam tombol */
.btn-svg {
    width: 12px;
    height: 12px;
    fill: currentColor; /* Otomatis ngikutin warna teks tombolnya */
}

/* 📌 KUNCI UKURAN TOMBOL DI ATAS BIAR GAK IKUT MELAR SEPERTI KARET */
.btn-produk {
    display: inline-flex;    /* 👈 Mengubah ke inline agar ukurannya kaku */
    align-items: center;
    justify-content: center;
    width: fit-content !important; /* 👈 Kunci utama: Lebar tombol hanya mengikuti panjang teksnya saja! */
    min-width: 160px;        /* 👈 Kasih batas minimal biar tetep proporsional */
    max-width: 200px;        /* 👈 Batas maksimal biar pas di layar HP dan gak bisa melar lagi */
    margin: 10px auto 0 auto; /* 👈 Membuat tombolnya tetep berada di tengah-tengah card */
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    box-sizing: border-box;
}



.btn-produk:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.6);
}

/* Styling Logo YouTube */
.platform-icon-yt {
    margin: 20px 0;
    font-size: 4rem; /* Ukuran logo biar mantap */
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-youtube {
    color: #FF0000; /* Merah YouTube asli */
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.4)); /* Efek glow halus */
    transition: 0.3s;
}

.fa-youtube:hover {
    transform: scale(1.1); /* Sedikit membesar pas diarahkan kursor */
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.6));
}


/* Styling Biar Logo TikTok Gede dan Pas Bang */
.platform-icon-tt {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 -5px 0; /* Jarak atas-bawah biar gak renggang */
}

.platform-icon-tt i {
    font-size: 5rem !important; /* INI KUNCINYA BANG, kita paksa jadi gede */
    color: #ffffff;
    filter: drop-shadow(3px 0 0 #ff0050) drop-shadow(-3px 0 0 #00f2ea); /* Efek Cyan & Merah */
}

/* Biar gak tabrakan sama elemen bawahnya */
.input-group {
    margin-top: 5px !important;
}

/* Styling Logo Spotify */
.platform-icon-sp {
    margin: 10px 0 -15px 0; /* Margin bawah minus biar narik input ke atas */
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-spotify {
    color: #1DB954; /* Hijau Spotify asli */
    font-size: 5rem !important; /* Paksa gede bang! */
    filter: drop-shadow(0 0 15px rgba(29, 185, 84, 0.4));
    transition: 0.3s ease;
}

/* Biar gak renggang sama header */
.input-group {
    margin-top: 0 !important;
}
/* Styling Logo CapCut */
.platform-icon-cc {
    margin: 10px 0 -15px 0; /* Narik input group ke atas bang */
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-clapperboard {
    color: #ffffff;
    font-size: 4.5rem !important; /* Ukuran gede biar mantap */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transition: 0.3s ease;
}

.fa-clapperboard:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Memastikan input group nempel rapat */
.input-group {
    margin-top: 0 !important;
}

/* Container utama profil */
.profile-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 0 !important; /* Biar banner nempel ke atas */
}


/* === Bagian Video / GIF Banner (Anti-Bocor & Ultra Gelap) === */
.profile-banner {
    position: absolute;
    top: -5px;        /* 👈 Kita naikkan 5px ke atas biar bener-bener nyungsep keluar batas layar atas */
    left: 0;
    width: 100%;
    height: 205px;    /* 👈 Tingginya kita lebihin dikit biar tetep proporsional 200px */
    z-index: 1;
    overflow: hidden;
    background-color: #0c0f12 !important; /* 👈 Dasar dalam kotak juga dikunci gelap */
}

/* Penjinak Video / GIF */
.banner-video, .banner-img {
    width: 100%;
    height: 102%;     /* 👈 Naikkan jadi 102% biar nge-stretch nutup celah bawah */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
/* 📌 BINGKAI GELAP SISI LAYAR (VIGNETTE DRAMATIS) */
.profile-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Efek bayangan hitam tebal di kanan, kiri, dan atas layar biar gak rata kaku */
    box-shadow: inset 0 25px 40px rgba(0, 0, 0, 0.95),
                inset 30px 0 40px rgba(0, 0, 0, 0.95),
                inset -30px 0 40px rgba(0, 0, 0, 0.95);
    pointer-events: none;
    z-index: 2;
}

/* 📌 GRADASI BAWAH EKSTRA RAPAT & PEKAT */
.banner-overlay {
    position: absolute;
    bottom: -2px; /* 👈 Diturunkan 2px biar nutup total, anti bocor garis putih */
    left: 0;
    width: 100%;
    height: 100px; /* Kita tinggikan biar blurnya halus nyebar ke atas video */
    /* Gradasi super smooth dari transparan langsung tenggelam ke hitam background web abang */
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(12, 15, 18, 0.5) 40%, 
                #0c0f12 100%); /* 👈 Pastikan #0c0f12 ini sama dengan warna background utama web abang */
    z-index: 3;
}

/* Penjinak Video / GIF agar memenuhi ruang banner secara proporsional */
.banner-video, .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 👈 Menjaga video tetap padat dan tidak gepeng */
    position: absolute;
    top: 0;
    left: 0;
}

/* Efek gradasi pekat pemisah banner dengan background bawah */
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px; /* Kita tinggikan sedikit biar blurnya menyatu sempurna */
    background: linear-gradient(to bottom, transparent, #0c0f12); /* 📌 Samakan dengan warna background gelap web abang */
    z-index: 2;
}

/* Pastikan info profil (Foto & Teks) muncul kokoh di atas banner */
.profile-info {
    position: relative;
    z-index: 3; /* Kita naikkan layer-nya agar berada di paling atas video */
    padding-top: 120px; /* 👈 Ditata posisinya agar foto profil menggantung pas di tengah batas video */
    text-align: center;
}

.profile-img {
    border: 4px solid #0c0f12; /* Warna border disamakan dengan background utama */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.dev-title-glow {
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: white;
    font-weight: bold;
    
    /* JURUS BIAR JELAS: Outline Hitam + Bayangan Lembut */
    text-shadow: 
        -1.5px -1.5px 0 #000,  
         1.5px -1.5px 0 #000,
        -1.5px  1.5px 0 #000,
         1.5px  1.5px 0 #000, 
         0px 0px 10px rgba(0,0,0,0.8); /* Efek glow hitam di belakangnya */
    
    z-index: 20;
    position: relative;
}

h1 {
    display: block;
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    font-size: -3rem;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #1a2c3a;
    margin-bottom: 20px;
}

/* Container Badge */
.verified-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: -25px; 
    
    /* TRICK BUAT NAIKIN CENTANG KE ATAS */
    transform: translateY(-5px); /* Kalau kurang naik, ganti jadi -5px atau -6px ya Bang */
    
    animation: verify-glow 2s infinite alternate;
}

/* Mengatur ukuran dan warna SVG */
.svg-verified {
    width: 28px; /* Sesuaikan gedenya di layar laptop abang */
    height: 28px;
    fill: #1d9bf0; /* Warna biru resmi verified */
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.5));
}

@keyframes verify-glow {
    0% { opacity: 0.9; }
    100% { opacity: 1; filter: drop-shadow(2px 2px 4px #1d9bf0); }
}

.sub-title {
    color: #bbb; /* Abu-abu soft biar deskripsi utama rapi */
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.support-title {
    color: #ffeb3b; /* Kuning soft estetik biar eye-catching tapi tetep kalem */
    font-size: 0.8rem;
    font-style: italic; /* Dibikin miring biar ada variasinya */
}

/* --- Tambahan buat Audio Player --- */
#preview-container {
    background: rgba(255, 255, 255, 0.05); /* Transparan tipis biar elegan */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#audio-player {
    /* Trik buat bikin player audio bawaan browser jadi tema gelap */
    filter: invert(100%) hue-rotate(180deg) brightness(1.2);
    outline: none;
}

/* --- Animasi Link Download Biar User Sadar Udah Siap --- */
.status-msg a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #4caf50; /* Hijau sukses */
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Widget Jam Digital Kanan Atas --- */
.digital-clock {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    font-family: 'Press Start 2P', cursive;
    color: #ffffff;
    z-index: 999; /* Biar gak tertutup elemen lain */
    background: rgba(0, 0, 0, 0.4); /* Background transparan tipis biar tetep kebaca */
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none; /* Biar gak ganggu klik elemen di bawahnya */
}

#clock-time {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffeb3b; /* Warna kuning soft biar senada sama teks support abang */
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    margin-bottom: 4px;
}

#clock-date {
    font-size: 0.55rem; /* Dibuat lebih kecil biar proporsional */
    color: #bbb;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8);
}

/* Responsif buat layar HP biar gak tabrakan */
@media (max-width: 600px) {
    .digital-clock {
        top: 15px;
        right: 15px;
        padding: 5px 8px;
    }
    #clock-time { font-size: 0.7rem; }
    #clock-date { font-size: 0.45rem; }
}

/* --- Tema Dasar Gelap Khas Depay --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d12;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.deploy-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    text-align: center;
}

/* --- Header & Logo Vercel Menyala --- */
.header-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 0px #090a03;
    margin-bottom: 10px;
}

.vercel-logo-box {
    margin: 20px 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-vercel {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.8)); transform: scale(1.03); }
}

.sub-text {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

/* --- Form Input Domain --- */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    color: #ffeb3b; /* Kuning manis senada text support */
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domain-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2px 12px;
    transition: all 0.3s ease;
}

.domain-input-wrapper:focus-within {
    border-color: #2196f3;
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
}

.domain-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    font-size: 0.95rem;
}

.domain-addon {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    padding-left: 10px;
    user-select: none;
}

/* --- Zona Upload File Drop --- */
.upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 25px;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: #2196f3;
    background: rgba(33, 150, 243, 0.05);
}

.upload-icon {
    width: 45px;
    height: 45px;
    color: #2196f3;
    margin-bottom: 12px;
}

.upload-zone p {
    font-size: 0.9rem;
    color: #ccc;
}

.upload-zone span {
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

.file-selected-name {
    display: none;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #4caf50;
    font-weight: bold;
}

/* --- Tombol Deploy --- */
.btn-deploy {
    width: 100%;
    background: #2196f3;
    color: white;
    border: none;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.btn-deploy:hover {
    background: #1e88e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

/* --- Kotak Konsol Log Status --- */
.status-box {
    display: none;
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    font-family: monospace;
    font-size: 0.85rem;
    color: #4caf50;
    line-height: 1.6;
}

.status-line {
    margin-bottom: 6px;
}

/* Spinner Animasi Putar buat status Loading */
.spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #ffeb3b;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s infinite linear;
    margin-right: 6px;
}


@keyframes spin {
    100% { transform: rotate(360deg); }
}

.success-box a {
    color: #2196f3;
    text-decoration: none;
    font-weight: bold;
}
.success-box a:hover { text-decoration: underline; }

/* --- 1. Navigasi Teks Gaya Garis Bawah (_) --- */
.text-tab-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px 0 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.tab-text-btn {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    transition: color 0.3s ease;
    user-select: none;
}

.tab-text-btn:hover {
    color: #ccc;
}

/* Trik membuat garis bawah (_) yang menyala pas aktif */
.tab-text-btn.active {
    color: #ffffff;
}

.tab-text-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px; /* Pas menempel di border-bottom nav */
    left: 0;
    width: 100%;
    height: 2px;
    background: #2196f3; /* Garis bawah biru signature abang */
    box-shadow: 0 0 10px rgba(33, 150, 243, 0.8);
}

/* --- 2. Konten Slide Panel --- */
.slide-panel {
    display: none;
    animation: slideFade 0.4s ease-in-out;
}
.slide-panel.active {
    display: block;
}

@keyframes slideFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Size Adjuster buat Ikon SVG Font Awesome baru */
.nav-icon svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

/* --- 3. Desain Kotak API Gabungan --- */
.api-merged-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.api-case-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
}

.api-link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050508;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.api-info {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.badge-method {
    background: #4caf50;
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}

.api-url-text {
    font-family: monospace;
    font-size: 0.8rem;
    color: #00bcd4;
    white-space: nowrap;
}

.btn-copy-api {
    background: rgba(33, 150, 243, 0.15);
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: #2196f3;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-copy-api:hover {
    background: #2196f3;
    color: #fff;
}

/* Tombol peluncur slide kode */
.btn-slide-case {
    width: 100%;
    background: transparent;
    border: none;
    color: #888;
    font-size: 0.75rem;
    padding: 8px 0 0 0;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: color 0.2s;
}
.btn-slide-case:hover { color: #fff; }

/* --- Editor Box Bertema VS Code Pekat --- */
.vs-code-box {
    max-height: 0;
    overflow: hidden;
    background: #1e1e1e;
    border-radius: 6px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
    /* 📌 Menggunakan transition max-height yang kaku agar tidak merusak elemen luar */
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out; 
    opacity: 0;
}

/* 📌 PAS KODE KEBUKA (OPEN) */
.vs-code-box.open {
    max-height: 280px;      /* 👈 Kunci tingginya segini Bang, jangan biarkan loss memanjang tanpa batas */
    opacity: 1;
    overflow-y: auto;       /* 👈 Kalau kode case abang panjang ke bawah, dia nge-scroll internal di dalam box abu-abu */
    overflow-x: hidden;     /* 👈 Matikan scroll horizontal luar */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 📌 Kunci Baris Teks Di Dalamnya */
.vs-code-box pre {
    margin: 0;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    white-space: pre-wrap !important; /* 👈 Memaksa baris kode patah turun ke bawah */
    word-wrap: break-word !important; 
    word-break: break-all;
}

.vs-code-box code {
    font-family: 'Consolas', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #d4d4d4;
    display: block;
    white-space: pre-wrap !important;       /* 👈 Sinkronisasi ulang tingkat tag kodenya */
}

/* --- Syntax Highlighter Warna Token VS Code --- */
.vs-keyword { color: #569cd6; font-weight: bold; } /* Biru Keyword: case, if, return, await */
.vs-string  { color: #ce9178; }                    /* Jingga/Coklat: Teks string 'ytdl' */

.section-title {
    display: flex;
    align-items: center;
    justify-content: center; /* Membuat judul beserta ikonnya rata tengah pas di HP */
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

/* --- Pembungkus Konten Slider --- */
.tab-slider-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: block;
    /* 📌 Kita kasih min-height cadangan biar pas ganti tab, 
       tinggi dasar kontainer gak mendadak menyusut ke 0 */
    min-height: 200px; 
}

/* 📌 GARIS PEMBATAS ATAS (DI BAWAH JAM DIGITAL - ANTI GOYANG) */
.garis-pembatas-atas {
    position: absolute;  /* 👈 Mengunci posisi berdasarkan koordinat layar atas */
    top: 80px;           /* 👈 Jarak pas di bawah Jam abang. Kalau kurang pas, tinggal naikin/turunin angkanya */
    left: 50%;
    transform: translateX(-50%); /* Memaksa garis tetep presisi berada di tengah-tengah */
    
    width: 95%;          /* 👈 Kunci utama: Lebar garis cuman 85%, gak bakal mentok ujung layar */
    max-width: 450px;    /* Batas maksimal lebar biar pas di layar HP */
    height: 1px;         /* Ketebalan super tipis biar minimalis dan mewah */
    border: none;        /* Buang border bawaan browser */
    
    /* Warna gradasi: Tengahnya abu-abu terang, ujung kanan-kirinya memudar halus ke background gelap */
    background: linear-gradient(to right, 
                transparent 0%, 
                rgba(255, 255, 255, 0.2) 20%, 
                rgba(255, 255, 255, 0.2) 80%, 
                transparent 100%);
                
    z-index: 50;         /* 👈 Layer tertinggi agar tidak tertimbun oleh video banner pas animasi masuk */
    margin: 0;           /* Hapus margin bawaan browser */
    pointer-events: none; /* Biar gak mengganggu ketukan jari di layar */
}

/* ========================================================= */
/* --- DEPAYS MODERN MINIMALIST BURGER MENU & ANIMATION --- */
/* ========================================================= */

.depay-burger-menu {
    position: fixed;
    top: 15px;
    left: 15px; /* Posisi awal di pojok kiri atas */
    z-index: 1005; /* Wajib paling depan dibanding konten web */
    cursor: pointer;
    background: transparent;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* ✨ Efek animasi bounce/pegas pro */
}

.burger-lines {
    width: 25px; /* Lebar logonya pas */
    height: 18px; /* Tinggi logonya pas */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- Style Garis Menunya --- */
.burger-lines span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff; /* Warna garis putih biar nyatu ama tema gelap depay */
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Transisi garis super smooth */
}

/* --- SESI ANIMASI KETIKA SIDEBAR TERBUKA (.active) --- */

/* 1. Tombol LOMPAT KE SAMPING SEJAUH LEBAR SIDEBAR + MUTER GOKIL */
.depay-burger-menu.active {
    left: 270px; /* Lompat ke kanan sejauh lebar sidebar 250px + space jarak 20px */
    transform: rotate(360deg); /* ✨ EFEK MUTER GOKIL 360 DERAJAT! */
}

/* 2. Warna garis berubah jadi merah (biar keren pas close) */
.depay-burger-menu.active .burger-lines span {
    background: #ff4757; 
}

/* 3. LOGO GARIS TIGA BERUBAH BENTUK JADI TANDA SILANG (❌) PAS AKTIF */
.depay-burger-menu.active .line-1 {
    transform: translateY(7.5px) rotate(45deg); /* Garis atas miring 45 derajat */
}

.depay-burger-menu.active .line-2 {
    opacity: 0; /* Garis tengah sembunyi */
    transform: translateX(-15px); /* Geser garis tengah keluar */
}

.depay-burger-menu.active .line-3 {
    transform: translateY(-7.5px) rotate(-45deg); /* Garis bawah miring -45 derajat */
}

html, body {
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE10+/Edge */
    user-select: none;          /* Standar Browser (Chrome, Opera, dll) */
}

.boleh-copy {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


