/* --- Root & Variable --- */
:root {
    --primary-orange: #ee6c00;
    --dark-bg: #121212;
    --surface: #1e1e1e;
    --text-white: #fff;
    --text-dim: #b2b2b2;
    
    /* Clamp: Min 16px, Max 20px, Scalable di tengah */
    --font-base: clamp(16px, 1.5vw + 14px, 20px);
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Nunito', sans-serif; /* Menggunakan Nunito */
    font-size: var(--font-base);
    line-height: 1.6;
}

/* --- Responsive Container Sakti --- */
.container {
    width: 100%;
    margin: 0 auto;
    /* Default HP */
    padding: 0 10px;
    position: relative;
}

/* Styling Ikon agar tidak nempel dengan teks */
.fa-solid, .fa-brands, .fa-regular {
    margin-right: 8px;
    color: var(--primary-orange); /* Standar ikon kita warna oranye */
}

/* Tablet */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 20px;
    }
}


/* --- Tipografi --- */
h1, h2, h3, h4 {
    font-weight: 800; /* Nunito terlihat bagus di weight tinggi */
    color: var(--primary-orange);
    line-height: 1.2;
}

/* --- Header Styles --- */
.main-header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px); /* Efek kaca kekinian */
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px; /* Tinggi standar header HP */
}

.logo-text {
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: -1px;
    color: var(--text-white);
}

.logo-text .accent {
    color: var(--primary-orange);
}

.nav-icons a {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-left: 20px;
    text-decoration: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent; /* Hapus kotak biru saat diklik di HP */
    line-height: 1; /* Memastikan tidak ada ruang teks atas-bawah */
}

.header-spacer {
    height: 65px;
}

/* Memastikan tidak ada whitespace yang merusak layout */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0; /* Teknik sakti: hilangkan spasi antar elemen inline */
}

.nav-icons i {
    font-size: 1.2rem; /* Kembalikan ukuran ikon karena parent-nya font-size 0 */
}

/* SIDEBAR & OVERLAY STYLES */

/* Latar belakang gelap saat menu aktif */
.side-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Hitam transparan 70% */
    z-index: 1500; /* Di bawah sidebar, di atas konten utama */
    display: none; /* Sembunyi secara default */
    backdrop-filter: blur(4px); /* Efek blur halus pada konten belakang */
}

/* Panel Menu Sidebar */
.side-menu {
    position: fixed;
    top: 0;
    right: -280px; /* Posisi awal di luar layar (kanan) */
    width: 280px;
    height: 100%;
    background: var(--surface); /* Warna abu gelap dari variabel root */
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Transisi halus */
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

/* Class pembantu untuk memunculkan sidebar via JS */
.side-menu.active {
    right: 0;
}

/* Header di dalam sidebar */
.side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

/* Pengaturan link menu navigasi samping */
.side-nav a {
    display: block;
    padding: 15px 0;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
}

/* Warna ikon di sidebar */
.side-nav a i {
    width: 30px;
    color: var(--primary-orange);
}

/* Garis pembatas horizontal */
.side-divider {
    border: 0;
    border-top: 1px solid #333;
    margin: 20px 0;
}

/* --- Breadcrumbs Style --- */
.breadcrumb-container {
    margin-top: 10px; /* Supaya nggak ketutup header sticky */
    margin-bottom: 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.breadcrumb-item a {
    color: var(--primary-orange);
    text-decoration: none;
    text-transform: uppercase;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #444;
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: var(--text-white);
    text-transform: uppercase;
    opacity: 0.9;
}
/* --- End Breadcrumbs --- */



/* --- HERO SECTION STYLES --- */
@media(min-width: 768px){
    .hero-section{
        text-align: center;
    }
    .trending-tags a{
        margin-right: 20px;
    }
}
.hero-section {
    padding: 40px 0;
    padding-top: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.5)),url('/assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/*.hero-section {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #121212, #1a1a1a);
}*/
.hero-wrapper{
    margin: 40px 0 60px;
}
/* Warna Putih Bersih untuk Variasi Judul */
.text-white {
    color: #ffffff;
    /* Kita kasih sedikit shadow lembut agar teks putihnya "keluar" dari background */
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* Warna Oranye Khas Chordtales */
.accent {
    color: var(--primary-orange);
    /* Biar makin menyala, kasih glow tipis */
    text-shadow: 0 0 15px rgba(238, 108, 0, 0.3);
}

/* Update gaya H1 agar lebih gahar */
.hero-text h1 {
    font-size: 2.2rem; /* Sedikit diperbesar */
    font-weight: 900;
    letter-spacing: -1px; /* Biar makin rapat dan pro */
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,.7);
}

.hero-text p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* --- MAIN SEARCH BOX --- */
.main-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    background: var(--surface);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 6px 6px 6px 20px;
    align-items: center;
    transition: 0.3s;
}

.search-input-group:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(238, 108, 0, 0.2);
}

.search-input-group i {
    color: #eee;
    margin-right: 15px;
}

.search-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
}

.search-input-group button {
    background: linear-gradient(135deg, #ee6c00, #ff9100);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
}

/* --- TRENDING TAGS --- */
.trending-tags {
    font-size: 0.85rem;
    color: --text-white;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
}

.trending-tags a {
    color: var(--primary-orange);
    text-decoration: none;
    margin-left: 5px;
    padding: 2px 3px;
    border: 1px solid #444444;
    border-radius: 3px;
}

.trending-tags a:hover {
    color: #aaa;
}
/* --- ENHANCED SEARCH RESULTS --- */
.search-results-popup {
    position: absolute;
    width: 100%;
    max-width: 600px;
    background: var(--surface);
    border: 1px solid #333;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 100;
    overflow: hidden;
    text-align: left;
    display: none;
}

/* Menghilangkan gaya link kaku pada hasil search */
.search-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none !important; /* Hapus garis bawah */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

/* Pastikan warna tetap putih/oranye walau sudah diklik (visited) */
.search-item, 
.search-item:visited {
    color: var(--text-white) !important;
}

.search-item:hover {
    background: rgba(238, 108, 0, 0.1);
}

.search-item .info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-orange); /* Judul Lagu Oranye */
}

.search-item .info p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: var(--text-dim); /* Nama Artis redup */
}

/* --- LATEST CHORDS SECTION --- */
.latest-chords {
    padding: 15px;
    margin-bottom: 40px;
}

.latest-chords .section-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px ;
}
#section-headers{
    display: flex;
    flex-direction: column !important;
    align-items: flex-start;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 20px 0;
}

.view-all {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid var(--primary-orange);
    border-radius: 5px;
    padding: 5px 10px;
}

/* Styling Ikon di Dalam Card */
.chord-card .card-content h3 i,
.chord-card .card-content p i,
.chord-card .category-tag i {
    margin-right: 8px; /* Jarak antara ikon dan teks */
    width: 16px;       /* Memastikan ikon punya lebar tetap agar teks sejajar */
    text-align: center;
}

/* Warna Ikon Judul & Artis agar tidak terlalu mencolok */
.chord-card .card-content h3 i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.chord-card .card-content p i {
    color: #888;
    font-size: 0.8rem;
}

/* Ikon di Kategori */
.category-tag i {
    font-size: 0.7rem;
    color: #fff;
}

/* Memastikan teks tidak menempel jika terlalu panjang */
.chord-card .card-content h3, 
.chord-card .card-content p {
    display: flex;
    align-items: center;
}

/* --- CHORD GRID SYSTEM --- */
.chord-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Satu kolom di HP */
    gap: 15px;
}

/* Tablet ke atas jadi 2 atau 3 kolom */
@media (min-width: 600px) {
    .chord-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- CHORD CARD STYLE --- */
.chord-card {
    background: var(--surface);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s transform ease, 0.3s border-color ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chord-card:active {
    transform: scale(0.97); /* Efek membal saat ditekan di HP */
    border-color: var(--primary-orange);
}

.category-tag {
    background: rgba(238, 108, 0, 0.1);
    color: var(--primary-orange);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.chord-card h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.chord-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 15px;
    font-size: 0.8rem;
    color: #666;
}


/* --- START: POPULAR ARTISTS SECTION (CHORDTALES) --- */
.popular-artists {
    padding: 30px 0;
    /* Memastikan section tidak benar-benar nempel ke pinggir layar HP */
    overflow: hidden; 
}

/* Memperbaiki Header agar sejajar dengan container */
.popular-artists .section-header {
    padding: 0 15px; /* Memberi nafas di kiri-kanan */
    margin-bottom: 20px;
}

/* Container untuk scroll horizontal */
.artist-scroll {
    display: flex;
    gap: 20px; /* Jarak antar artis sedikit diperlebar agar elegan */
    overflow-x: auto;
    /* Memberi padding kiri agar sejajar dengan judul saat di-scroll awal */
    padding: 10px 15px 20px 15px; 
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.artist-scroll::-webkit-scrollbar {
    display: none;
}

/* Card per artis */
.artist-item {
    text-decoration: none !important; /* Menghapus garis bawah */
    text-align: center;
    min-width: 85px;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* Hapus warna biru saat di-tap di HP */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mengatasi Link Kaku: Warna default dan saat sudah diklik (visited) */
.artist-item, 
.artist-item:visited, 
.artist-item:active, 
.artist-item:focus {
    color: var(--text-white); /* Tetap putih sesuai tema */
    text-decoration: none;
}

/* Bungkus foto dengan border gradasi */
.artist-avatar-wrapper {
    width: 75px; 
    height: 75px; 
    margin-bottom: 12px; 
    border-radius: 50%; 
    padding: 2px; /* Border lebih tipis agar elegan */
    background: linear-gradient(135deg, var(--primary-orange), #ffcc00);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Shadow lebih gelap agar kontras */
    position: relative;
    transition: all 0.3s ease;
}

/* Styling foto artis */
.artist-img-auto {
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    object-fit: cover; 
    background: #1a1a1a;
    border: 3px solid var(--dark-bg); /* Pemisah antara foto dan gradasi */
    transition: all 0.3s ease;
}

/* Nama Artis - Menghilangkan warna biru link */
.artist-item .artist-name-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white); /* Pakai variabel warna putihmu */
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
    width: 90px; /* Batas lebar teks */
}

/* Efek saat ditekan (Mobile) */
.artist-item:active .artist-avatar-wrapper {
    transform: scale(0.92);
}

/* Hover effect untuk Desktop */
@media (min-width: 768px) {
    .artist-item:hover .artist-avatar-wrapper {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(238, 108, 0, 0.3);
    }
    
    .artist-item:hover .artist-name-text {
        color: var(--primary-orange); /* Nama berubah oranye saat di-hover */
    }
}
/* --- END: POPULAR ARTISTS SECTION --- */

/* CONTAINER UTAMA SECTION DIAGRAM CHORD*/
.basic-learning-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 40px 0;
}

.section-title-home {
    color: #ee6c00;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin: 40px 0 20px;
}
.section-title-paragraf{
    text-align: center;
    margin: 0 0 20px;
}

/* WRAPPER UNTUK LAYOUT DINAMIS */
.learning-container {
    display: flex;
    flex-direction: column; /* Default Mobile: Atas-Bawah */
    align-items: center;
    gap: 25px;
    width: 100%;
}

/* KOTAK DIAGRAM (DISPLAY) */
.diagram-display-box {
    background: #121212;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #333;
    text-align: center;
    box-shadow: inset 0 4px 15px rgba(0,0,0,0.6);
    flex-shrink: 0;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home-chord-name {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(238, 108, 0, 0.5);
    display: none;
}

/* AREA TOMBOL */
.chord-selector-grid-full {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 450px;
}

.chord-row {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 5px;
    scrollbar-width: none;
}

.chord-row::-webkit-scrollbar { display: none; }

/* STYLE TOMBOL */
.btn-select-chord {
    flex: 0 0 48px;
    height: 48px;
    background: #1e1e1e;
    border: 1px solid #333;
    color: #999;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-select-chord.active {
    background: linear-gradient(145deg, #ee6c00, #c45a00);
    color: #fff;
    border-color: #ee6c00;
    box-shadow: 0 4px 12px rgba(238, 108, 0, 0.3);
    transform: scale(1.05);
}

/* --- RESPONSIVE: SEBELAHAN DI LAYAR LEBAR (768px+) --- */
@media (min-width: 768px) {
    .learning-container {
        flex-direction: row; /* Berubah jadi Kiri-Kanan */
        justify-content: center;
        align-items: flex-start;
        gap: 50px;
    }

    .diagram-display-box {
        position: sticky;
        top: 20px;
    }

    .chord-selector-grid-full {
        max-width: 500px;
    }
}

/* SECTION ABOUT CHORDTALES (BUKAN MODAL) */
.about-fullscreen {
    background-image: linear-gradient(to bottom, #121212, rgba(0,0,0,.6), #121212),url('/assets/img/hero-bg.webp');
    background-size: cover;      /* Gambar menutupi seluruh area */
    background-position: center; /* Fokus di tengah gambar */
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0; /* Memberi ruang napas atas-bawah yang pas */
    box-sizing: border-box;
    /*background: transparent;*/ /* Biar menyatu dengan tema utama */
}

.about-glass-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; 
    width: 100%; 
    padding: 40px 25px; 
    position: relative; 
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    text-align: center;
    backdrop-filter: blur(0px);
}

.about-header h1 { margin: 10px 0 5px; color: #ee6c00; font-size: 28px; }
.creator-info p{
    color: #aaa;
    text-align: justify;
}
.about-logo { font-size: 40px; }
.about-logo i{
    color: #f0f0f0;
    border: 5px solid #ee6c00;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 0 35px rgba(0,0,0,0.8);
    text-shadow: 0 0 25px rgba(0,0,0,0.8);
}
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin: 30px 0; 
}

/* Item terakhir dibuat full width agar simetris */
.about-grid .about-item:last-child { grid-column: span 2; }

.about-item {
    background: rgba(255,255,255,0.05); 
    padding: 15px; 
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 15px rgba(0,0,0,.2);
    backdrop-filter: blur(15px);
}

.about-item i { color: #ee6c00; font-size: 20px; margin-bottom: 10px; }
.about-item h3 { font-size: 16px; margin-bottom: 5px; }
.about-item p { font-size: 13px; opacity: 0.7; line-height: 1.4; }

.btn-support {
    display: inline-block; 
    background: linear-gradient(to left, #ee6c00, #ff9800, #ee6c00); 
    color: #000; 
    padding: 6px 25px;
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.btn-support:hover { transform: translateY(-3px); }

/* STYLE OOTPUTE KATEGORY GENRE */
/* Container Utama */
.cat-page-wrapper { padding: 20px 15px; min-height: 80vh; }
.cat-header { margin-bottom: 25px; }

/* Judul Header Wrapper */
.cat-genre-title { 
    color: #fff; 
    font-family: 'Nunito', sans-serif; 
    font-weight: 800; 
    display: flex; 
    align-items: center; 
    flex-wrap: wrap;
    gap: 8px; 
    text-transform: uppercase;
    margin: 0; 
    font-size: 1.6rem; /* Ukuran sedikit disesuaikan agar pas di mobile */
}

/* Label "Genre:" berwarna putih */
.cat-label {
    color: #ffffff;
    font-weight: 700;
    text-transform: none !important;
}

/* Tulisan Jumlah Chord (Soft & Kecil) */
#chord-count {
    color: rgba(255, 255, 255, 0.3); 
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-left: 5px;
    transform: translateY(3px);
}

.cat-title-line { width: 60px; height: 4px; border-radius: 2px; margin-top: 8px; display:none;}

/* Grid Responsif 2 Kolom */
.cat-chord-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 768px) { 
    .cat-chord-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } 
}

/* Glossy Card Styling */
.cat-glossy-card { 
    text-decoration: none; display: flex; align-items: center; justify-content: space-between; 
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 16px; border-radius: 18px; backdrop-filter: blur(10px); transition: 0.3s ease; 
}
.cat-card-main { display: flex; align-items: center; }
.cat-icon-holder { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-right: 15px; background: rgba(255, 255, 255, 0.02); }
.cat-details h4 { color: #fff; margin: 0; font-size: 1rem; font-weight: 700; line-height: 1.2; }
.cat-details p { color: #888; margin: 3px 0 0; font-size: 0.8rem; }
.cat-arrow { color: #444; font-size: 0.9rem; padding-right: 5px; }

/* Tombol CTA */
.cat-cta-area { margin-top: 35px; text-align: center; }
.cat-btn { 
    background: rgba(255, 255, 255, 0.03); border: 1px solid #ee6c00; color: #ee6c00; 
    padding: 12px 25px; border-radius: 15px; font-family: 'Nunito', sans-serif; 
    font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s;
}
.cat-btn-alt { border-color: #444; color: #888; }
.cat-glossy-card:active { transform: scale(0.98); background: rgba(255, 255, 255, 0.08); }

/* STYLE FORM REQUEST DB JSON*/
/* Container Reset & Layout */
/* Container Utama */
.request-box {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    margin: 20px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.request-box h3 {
    color: var(--primary-color, #ff9800);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Style Input */
.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.request-box input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.request-box input:focus {
    border-color: var(--primary-color, #ff9800);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.2);
}

/* Tombol Kirim */
#btn-kirim {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

#btn-kirim:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

/* Chat Bubbles / Antrean */
.chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #ff9800;
    animation: slideIn 0.4s ease forwards;
}

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

.chat-bubble small {
    color: #888;
    font-size: 0.75rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: #eee;
}

.song-name {
    color: #fff;
    font-style: italic;
    display: block;
    margin: 5px 0;
    font-size: 16px;
}

/* Balasan Ketua */
.admin-reply {
    margin-top: 12px;
    padding: 10px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ff9800;
    border: 1px dashed rgba(255, 152, 0, 0.3);
}
