/* ==========================================================
   1. RESET BASE (Agar Presisi & Menghapus Padding Browser)
   ========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Warna Brand Solana */
    --solana-green: #14F195;
    --solana-blue: #4E44CE;
    --solana-purple: #9945FF;
    
    --primary: var(--solana-green); 
    --bg: #000000; /* Hitam murni agar kontras */
    --text: #ffffff;
    --border-weight: 3px;
}

/* --- Base Body & Typography --- */
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden; /* Mencegah scroll ke samping */
    /* HAPUS display: flex dari sini */
    line-height: 1.6;
}

h1, h2, h3, .btn, .logo {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
}

/* ==========================================================
   2. LAYOUT & CONTAINER GLOBAL
   ========================================================== */
.container {
    width: 100%;
    max-width: 1200px; /* Lebar maksimal konten */
    margin: 0 auto;    /* Membuat konten di tengah */
    padding: 0 20px;   /* Padding kiri kanan konsisten agar tidak mentok */
}

/* ==========================================================
   3. BACKGROUND & GRID (Pola & Gelembung)
   ========================================================== */
#bubbleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

.retro-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(20, 241, 149, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 69, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ==========================================================
   4. NAVIGATION (Navigasi)
   ========================================================== */
/* Container Utama Navbar */
nav {
    height: 80px;
    width: 100%;
    border-bottom: var(--border-weight, 2px) solid var(--primary, #00ffa3);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Pembungkus Konten (Flexbox) */
.nav-wrapper {
    display: flex;
    justify-content: space-between; /* Mendorong logo ke kiri, ikon ke kanan */
    align-items: center;           /* Menyejajarkan secara vertikal di tengah */
    height: 100%;                  /* WAJIB: Agar mengikuti tinggi nav 80px */
    max-width: 1200px;             /* Menjaga konten tidak terlalu lebar */
    margin: 0 auto;                /* Memposisikan kontainer di tengah layar */
    padding: 0 5%;                 /* Jarak aman dari pinggir layar */
    box-sizing: border-box;
}

/* Gaya Tulisan Logo */
.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

/* Wadah Ikon */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gaya Gambar Ikon */
.nav-icon img {
    height: 48px;                  /* Ukuran diperbesar agar lebih terlihat */
    width: 48px;                   /* Pastikan sama dengan height agar bulat sempurna */
    border-radius: 50%;            /* Membuat foto jadi lingkaran */
    object-fit: cover;             /* Memastikan foto tidak gepeng/distorsi */
    border: 2px solid var(--primary, #00ffa3); /* Border neon sesuai tema */
    transition: transform 0.3s ease; /* Efek halus saat hover */
    cursor: pointer;
}

/* Efek saat Ikon di-hover (Opsional) */
.nav-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary, #00ffa3);
}



/* ==========================================================
   5. HERO SECTION (Ujung Atas)
   ========================================================== */
.hero {
    min-height: 90vh; /* Tinggi minimal 90% layar */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Konten tegak lurus di tengah */
    position: relative;
    padding: 100px 0; /* Memberi jarak atas bawah */
    /* Gradasi Solana */
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.1) 0%, rgba(153, 69, 255, 0.1) 100%);
    border-bottom: var(--border-weight) solid var(--solana-purple);
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    /* Gradasi Teks h1 */
    background: linear-gradient(to right, var(--solana-green), var(--solana-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block; /* Agar memenuhi lebar kontainer */
}

.hero-desc {
    max-width: 500px;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}


/* ==========================================================
   6. COMPONENTS (Tombol, dll)
   ========================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    /* Gradasi Solana untuk Tombol */
    background: linear-gradient(45deg, var(--solana-green), var(--solana-blue));
    color: #000000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: var(--border-weight) solid #000;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px var(--solana-purple);
}

/* ==========================================================
   7. MEDIA PLAYER SLIDER (Image & Video)
   ========================================================== */
.player-container {
    width: 100%;
    padding: 100px 0; 
    overflow: hidden; 
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px; 
}

.swiper-slide {
    width: 280px; 
    height: 420px; 
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s;
    filter: blur(4px) grayscale(100%);
    opacity: 0.4;
    transform: scale(0.85); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Memastikan background hitam jika media belum dimuat */
    background: #000; 
}

/* EFEK TENGAH MEMBESAR & TERANG */
.swiper-slide-active {
    filter: blur(0px) grayscale(0%);
    opacity: 1;
    transform: scale(1.1); 
    border: 2px solid var(--solana-green, #14f195); /* Fallback warna jika variable tidak ada */
    box-shadow: 0 0 30px rgba(20, 241, 149, 0.3);
    z-index: 10;
}

/* TARGETING MEDIA: IMAGE & VIDEO */
.swiper-slide img,
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan media memenuhi area tanpa distorsi */
    display: block;
}


/* Pagination Dots */
.swiper-pagination-bullet {
    background: var(--solana-green) !important;
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==========================================================
   8. MEDIA QUERY (Mobile Presisi)
   ========================================================== */
@media (max-width: 768px) {
    /* Padding Container Mobile */
    .container {
        padding: 0 15px; 
    }

    /* Teks Hero Mobile */
    .hero h1 {
        font-size: 12vw; /* Lebih dinamis di layar kecil */
        line-height: 1;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 1.1rem;
    }

    /* Slider Mobile */
    .swiper-slide {
        width: 240px; /* Sedikit diperkecil di mobile */
        height: 360px;
    }
}
*/
footer {
    width: 100%;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.9) !important;
    border-top: var(--border-weight) solid var(--solana-green);
    text-align: center; /* Memastikan teks di tengah */
    display: flex;
    flex-direction: column;
    align-items: center; /* Memastikan semua konten flex di tengah */
    justify-content: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Memberi jarak antar baris teks */
}

footer p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}


.top-banner {
    padding: 60px 20px;
    background: #0a0a0c;
    color: #fff;
}

.banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tagline {
    font-family: 'Courier New', monospace;
    color: #00f2ff; /* Warna neon cyan */
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.banner-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
   margin-bottom: 50px; /* Ubah angka ini sesuai keinginan */
}
    

.banner-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.8) contrast(1.1);
}

/* Efek Overlay Garis-Garis Digital */
/* ==========================================================
   1. RESET BASE (Agar Presisi & Menghapus Padding Browser)
   ========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Warna Brand Solana */
    --solana-green: #14F195;
    --solana-blue: #4E44CE;
    --solana-purple: #9945FF;
    
    --primary: var(--solana-green); 
    --bg: #000000; /* Hitam murni agar kontras */
    --text: #ffffff;
    --border-weight: 3px;
}

/* --- Base Body & Typography --- */
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden; /* Mencegah scroll ke samping */
    /* HAPUS display: flex dari sini */
    line-height: 1.6;
}

h1, h2, h3, .btn, .logo {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
}

/* ==========================================================
   2. LAYOUT & CONTAINER GLOBAL
   ========================================================== */
.container {
    width: 100%;
    max-width: 1200px; /* Lebar maksimal konten */
    margin: 0 auto;    /* Membuat konten di tengah */
    padding: 0 20px;   /* Padding kiri kanan konsisten agar tidak mentok */
}

/* ==========================================================
   3. BACKGROUND & GRID (Pola & Gelembung)
   ========================================================== */
#bubbleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

.retro-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(20, 241, 149, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 69, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ==========================================================
   4. NAVIGATION (Navigasi)
   ========================================================== */
/* Container Utama Navbar */
nav {
    height: 80px;
    width: 100%;
    border-bottom: var(--border-weight, 2px) solid var(--primary, #00ffa3);
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Pembungkus Konten (Flexbox) */
.nav-wrapper {
    display: flex;
    justify-content: space-between; /* Mendorong logo ke kiri, ikon ke kanan */
    align-items: center;           /* Menyejajarkan secara vertikal di tengah */
    height: 100%;                  /* WAJIB: Agar mengikuti tinggi nav 80px */
    max-width: 1200px;             /* Menjaga konten tidak terlalu lebar */
    margin: 0 auto;                /* Memposisikan kontainer di tengah layar */
    padding: 0 5%;                 /* Jarak aman dari pinggir layar */
    box-sizing: border-box;
}

/* Gaya Tulisan Logo */
.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

/* Wadah Ikon */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gaya Gambar Ikon */
.nav-icon img {
    height: 48px;                  /* Ukuran diperbesar agar lebih terlihat */
    width: 48px;                   /* Pastikan sama dengan height agar bulat sempurna */
    border-radius: 50%;            /* Membuat foto jadi lingkaran */
    object-fit: cover;             /* Memastikan foto tidak gepeng/distorsi */
    border: 2px solid var(--primary, #00ffa3); /* Border neon sesuai tema */
    transition: transform 0.3s ease; /* Efek halus saat hover */
    cursor: pointer;
}

/* Efek saat Ikon di-hover (Opsional) */
.nav-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary, #00ffa3);
}



/* ==========================================================
   5. HERO SECTION (Ujung Atas)
   ========================================================== */
.hero {
    min-height: 90vh; /* Tinggi minimal 90% layar */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Konten tegak lurus di tengah */
    position: relative;
    padding: 100px 0; /* Memberi jarak atas bawah */
    /* Gradasi Solana */
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.1) 0%, rgba(153, 69, 255, 0.1) 100%);
    border-bottom: var(--border-weight) solid var(--solana-purple);
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    /* Gradasi Teks h1 */
    background: linear-gradient(to right, var(--solana-green), var(--solana-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block; /* Agar memenuhi lebar kontainer */
}

.hero-desc {
    max-width: 500px;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
}


/* ==========================================================
   6. COMPONENTS (Tombol, dll)
   ========================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    /* Gradasi Solana untuk Tombol */
    background: linear-gradient(45deg, var(--solana-green), var(--solana-blue));
    color: #000000;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: var(--border-weight) solid #000;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px var(--solana-purple);
}

/* ==========================================================
   7. MEDIA PLAYER SLIDER (Image & Video)
   ========================================================== */
.player-container {
    width: 100%;
    padding: 100px 0; 
    overflow: hidden; 
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px; 
}

.swiper-slide {
    width: 280px; 
    height: 420px; 
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s;
    filter: blur(4px) grayscale(100%);
    opacity: 0.4;
    transform: scale(0.85); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Memastikan background hitam jika media belum dimuat */
    background: #000; 
}

/* EFEK TENGAH MEMBESAR & TERANG */
.swiper-slide-active {
    filter: blur(0px) grayscale(0%);
    opacity: 1;
    transform: scale(1.1); 
    border: 2px solid var(--solana-green, #14f195); /* Fallback warna jika variable tidak ada */
    box-shadow: 0 0 30px rgba(20, 241, 149, 0.3);
    z-index: 10;
}

/* TARGETING MEDIA: IMAGE & VIDEO */
.swiper-slide img,
.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan media memenuhi area tanpa distorsi */
    display: block;
}


/* Pagination Dots */
.swiper-pagination-bullet {
    background: var(--solana-green) !important;
    width: 12px;
    height: 12px;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==========================================================
   8. MEDIA QUERY (Mobile Presisi)
   ========================================================== */
@media (max-width: 768px) {
    /* Padding Container Mobile */
    .container {
        padding: 0 15px; 
    }

    /* Teks Hero Mobile */
    .hero h1 {
        font-size: 12vw; /* Lebih dinamis di layar kecil */
        line-height: 1;
    }

    .hero-desc {
        max-width: 100%;
        font-size: 1.1rem;
    }

    /* Slider Mobile */
    .swiper-slide {
        width: 240px; /* Sedikit diperkecil di mobile */
        height: 360px;
    }
}
*/
footer {
    width: 100%;
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.9) !important;
    border-top: var(--border-weight) solid var(--solana-green);
    text-align: center; /* Memastikan teks di tengah */
    display: flex;
    flex-direction: column;
    align-items: center; /* Memastikan semua konten flex di tengah */
    justify-content: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px; /* Memberi jarak antar baris teks */
}

footer p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.top-banner {
    padding: 60px 20px;
    background: #0a0a0c;
    color: #fff;
}

.banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tagline {
    font-family: 'Courier New', monospace;
    color: #00f2ff; /* Warna neon cyan */
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.banner-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
   margin-bottom: 50px; /* Ubah angka ini sesuai keinginan */
}
    

.banner-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.8) contrast(1.1);
}

/* Efek Overlay Garis-Garis Digital */
.futuristic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.1) 50%
    ), linear-gradient(
        90deg, 
        rgba(255, 0, 0, 0.03), 
        rgba(0, 255, 0, 0.01), 
        rgba(0, 0, 255, 0.03)
    );
    background-size: 100% 3px, 3px 100%;
    pointer-events: none; /* Agar tidak menghalangi klik */
}

.banner-image-container:hover .banner-img {
    transform: scale(1.03);
    filter: brightness(1);
   margin-bottom: 50px; /* Ubah angka ini sesuai keinginan */
}


/* ==========================================================
   MEDIA QUERY (Mobile Responsif Banner)
   ========================================================== */
@media (max-width: 768px) {
    .top-banner {
        padding: 60px 0; /* Jarak section lebih kecil di mobile */
    }

    .banner-video-container {
        height: 300px;     /* Tinggi banner di mobile */
        border-radius: 12px; /* Sudut lebih kecil di mobile */
        border: 2px solid var(--solana-purple); /* Bingkai lebih tipis */
    }
   }
/* Penempatan Menu */
.social-wrapper {
    position: relative;
    display: inline-block;
}

.social-content {
    display: none;
    position: absolute;
    right: 0;
    
    /* Warna latar gelap transparan */
    background: rgba(0, 0, 0, 0.6); 
    
    /* Efek blur (kaca buram) agar tetap elegan */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    min-width: 160px;
    border-radius: 12px;
    padding: 8px 0;
    z-index: 9999;
    margin-top: 15px;
    
    /* Border tipis agar terlihat tegas di latar gelap */
    border: 1px solid rgba(0, 255, 255, 0.2); 
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

/* Warna Teks dan Ikon jadi Putih/Terang */
.social-content a {
    color: #e0e0e0; 
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    transition: 0.3s;
}

/* Efek saat kursor diarahkan (Hover) */
.social-content a:hover {
    background-color: rgba(0, 255, 255, 0.1); /* Glow tipis warna cyan */
    color: #00ffff; /* Teks berubah jadi warna neon */
}

/* Jarak ikon */
.social-content a i {
    margin-right: 12px;
    font-size: 18px;
}

/* Pastikan class show tetap ada */
.show {
    display: block !important;
}


/* Pastikan teks tetap kontras */
.social-content a {
    color: #ffffff; /* Ubah ke black jika background web kamu terang */
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.social-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
/* Class ini akan dipicu oleh JavaScript */
.show {
    display: block !important;
}
:root {
    --accent-color: #1DB954; /* Spotify Green */
    --glass-bg: rgba(255, 255, 255, 0.05);
}

.player-container {
    padding: 40px 0;
    background: #0f0f0f; /* Background gelap agar warna cover 'pop out' */
}

.music-card {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    max-width: 320px;
    margin: 0 auto;
}

/* Container Gambar */
.cover-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cover-art {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efek Overlay Play saat Hover */
.overlay-play {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.circle-play-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
}

/* Info Teks */
.music-info {
    padding-top: 15px;
    text-align: left;
}

.song-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-name {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 4px 0 15px 0;
}

.btn-link {
    display: block;
    text-align: center;
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

/* Hover States */
.music-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.music-card:hover .cover-art {
    transform: scale(1.1);
}

.music-card:hover .overlay-play {
    opacity: 1;
}

.btn-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}


.play-btn:hover {
    transform: scale(1.05);
    background-color: #1ed760;
}

.btn-container {
    position: relative;
    display: inline-block;
}

.futuristic-btn {
    position: relative;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #00f2ff;
    text-decoration: none;
    background: transparent;
    border: 2px solid #00f2ff;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    overflow: hidden;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    cursor: pointer;
    display: inline-block;
}

/* Efek saat kursor di atas tombol */
.futuristic-btn:hover {
    color: #000;
    background: #00f2ff;
    box-shadow: 0 0 25px #00f2ff, 0 0 50px #00f2ff;
    transform: scale(1.05);
}

/* Animasi kilauan cahaya */
.futuristic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: 0.5s;
}

.futuristic-btn:hover::before {
    left: 100%;
}

.btn-label {
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 10px;
    color: #00f2ff;
    background: #050505;
    padding: 0 5px;
    letter-spacing: 1px;
    z-index: 10;
}
