/* ========================================
   GLOBAL STYLES
   ======================================== */

:root {
    --primary: #c9a84c;
    --primary-dark: #a8893a;
    --secondary: #1a1a1a;
    --dark: #0a0a0a;
    --text: #ffffff;
    --text-muted: #aaaaaa;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid var(--primary);
    padding: 5px 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 34px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-brand a {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 2px;
        margin: 3px 0;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.hero-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 0;
}

.hero-bg-left {
    flex: 0 0 50%;
    height: 100%;
    background: #000000;
    position: relative;
}

.hero-bg-right {
    flex: 0 0 50%;
    height: 100%;
    background-size: cover;
    background-position: center 18%;
    background-repeat: no-repeat;
    position: relative;
}

.hero-bg-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.4), transparent 20%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    max-width: 90%;
    padding: 40px 0;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-actions .btn {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   HERO - RESPONSIVE
   ======================================== */

@media (max-width: 1400px) {
    .hero-title { font-size: 4.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
}

@media (max-width: 1200px) {
    .hero-text { max-width: 85%; }
    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 1.1rem; max-width: 650px; }
    .hero-bg-right { background-position: center 20%; }
    .hero-actions .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .hero-bg-left { flex: 0 0 50%; }
    .hero-bg-right { flex: 0 0 50%; background-position: center 22%; }
    .hero-text { max-width: 85%; }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1rem; max-width: 550px; }
    .hero-actions .btn {
        padding: 10px 24px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-split-bg { flex-direction: row; }
    .hero-bg-left { flex: 0 0 50%; order: 1; }
    .hero-bg-right { flex: 0 0 50%; order: 2; background-position: center 25%; background-size: cover; }
    .hero-bg-right::before { background: linear-gradient(to right, rgba(0,0,0,0.5), transparent 20%); }
    .hero-overlay { background: rgba(0, 0, 0, 0.4); }
    .hero-content { padding: 0 15px; }
    .hero-text { max-width: 80%; padding: 30px 0; }
    .hero-title { font-size: 2.8rem; margin-bottom: 15px; }
    .hero-subtitle { font-size: 0.95rem; max-width: 450px; margin-bottom: 30px; }
    .hero-badge { font-size: 0.6rem; padding: 6px 16px; margin-bottom: 20px; }
    .hero-actions { flex-direction: row; gap: 12px; flex-wrap: wrap; }
    .hero-actions .btn {
        padding: 8px 20px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    .scroll-indicator { bottom: 25px; }
    .scroll-indicator span { font-size: 0.6rem; }
}

@media (max-width: 576px) {
    .hero-bg-left { flex: 0 0 50%; }
    .hero-bg-right { flex: 0 0 50%; background-position: center 28%; background-size: cover; }
    .hero-bg-right::before { background: linear-gradient(to right, rgba(0,0,0,0.6), transparent 15%); }
    .hero-overlay { background: rgba(0, 0, 0, 0.5); }
    .hero-content { padding: 0 12px; }
    .hero-text { max-width: 80%; padding: 20px 0; }
    .hero-title { font-size: 2rem; margin-bottom: 10px; }
    .hero-subtitle { font-size: 0.85rem; max-width: 350px; margin-bottom: 20px; line-height: 1.4; }
    .hero-badge { font-size: 0.5rem; padding: 4px 12px; letter-spacing: 2px; margin-bottom: 15px; }
    .hero-actions { flex-direction: row !important; gap: 8px; flex-wrap: wrap; }
    .hero-actions .btn {
        padding: 6px 16px;
        font-size: 0.7rem;
        white-space: nowrap;
        gap: 6px;
    }
    .hero-actions .btn i { font-size: 0.8rem; }
    .scroll-indicator { bottom: 15px; }
    .scroll-indicator span { font-size: 0.5rem; }
    .scroll-indicator i { font-size: 0.7rem; }
}

@media (max-width: 400px) {
    .hero-bg-left { flex: 0 0 50%; }
    .hero-bg-right { flex: 0 0 50%; background-position: center 25%; background-size: cover; }
    .hero-bg-right::before { background: linear-gradient(to right, rgba(0,0,0,0.7), transparent 10%); }
    .hero-text { max-width: 85%; padding: 15px 0; }
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.75rem; max-width: 280px; margin-bottom: 15px; }
    .hero-badge { font-size: 0.45rem; padding: 3px 10px; margin-bottom: 12px; }
    .hero-actions { flex-direction: row !important; gap: 6px; flex-wrap: wrap; }
    .hero-actions .btn {
        padding: 5px 12px;
        font-size: 0.65rem;
        white-space: nowrap;
        gap: 4px;
    }
    .hero-actions .btn i { font-size: 0.7rem; }
}

@media (max-width: 360px) {
    .hero-bg-left { flex: 0 0 50%; }
    .hero-bg-right { flex: 0 0 50%; background-position: center 22%; background-size: cover; }
    .hero-bg-right::before { background: linear-gradient(to right, rgba(0,0,0,0.8), transparent 10%); }
    .hero-text { max-width: 90%; padding: 10px 0; }
    .hero-title { font-size: 1.3rem; margin-bottom: 8px; }
    .hero-subtitle { font-size: 0.65rem; max-width: 220px; margin-bottom: 12px; }
    .hero-badge { font-size: 0.4rem; padding: 2px 8px; margin-bottom: 10px; letter-spacing: 1px; }
    .hero-actions { flex-direction: row !important; gap: 4px; flex-wrap: wrap; }
    .hero-actions .btn {
        padding: 4px 10px;
        font-size: 0.6rem;
        white-space: nowrap;
        gap: 3px;
    }
    .hero-actions .btn i { font-size: 0.6rem; }
    .scroll-indicator { bottom: 10px; }
    .scroll-indicator span { font-size: 0.4rem; }
    .scroll-indicator i { font-size: 0.6rem; }
}

@media (max-width: 320px) {
    .hero-actions .btn {
        padding: 3px 8px;
        font-size: 0.55rem;
    }
    .hero-actions .btn i { font-size: 0.5rem; }
}

/* ========================================
   MUSIC SECTION
   ======================================== */

.music-section {
    padding: 100px 0;
    background: var(--secondary);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1200px) {
    .music-grid { gap: 25px; }
}

@media (max-width: 992px) {
    .music-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .music-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

@media (max-width: 320px) {
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
}

.music-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.music-card.active {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.music-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.music-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a1a0a, #1a0a0a);
    font-size: 3rem;
    color: var(--primary);
}

.music-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-card:hover .music-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--text);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.music-card-info {
    padding: 15px;
}

.music-card-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.music-card-info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.music-duration {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.music-card-actions {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    color: #c9a84c;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    width: 100%;
    min-height: 36px;
    white-space: nowrap;
}

.download-btn:hover {
    background: #c9a84c;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.download-btn i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.download-btn .btn-text {
    display: inline;
}

/* Video Button - Same as Download */
.video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #ff4444;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    width: 100%;
    min-height: 36px;
    white-space: nowrap;
    text-align: center;
}

.video-btn:hover {
    background: #ff4444;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.video-btn i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.video-btn .btn-text {
    display: inline;
}

.music-card.hide-on-mobile {
    display: block;
}

@media (max-width: 768px) {
    .music-card.hide-on-mobile {
        display: none !important;
    }
}

/* ========================================
   MUSIC CARD - RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .music-card-info { padding: 12px; }
    .music-card-info h3 { font-size: 0.9rem; }
    .play-btn { width: 50px; height: 50px; font-size: 1.2rem; }
    .download-btn, .video-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
        min-height: 34px;
        gap: 6px;
        border-radius: 7px;
    }
    .download-btn i, .video-btn i { font-size: 0.75rem; }
}

@media (max-width: 992px) {
    .music-card-info { padding: 10px; }
    .music-card-info h3 { font-size: 0.8rem; }
    .music-card-info p { font-size: 0.7rem; }
    .play-btn { width: 45px; height: 45px; font-size: 1.1rem; }
    .download-btn, .video-btn {
        padding: 5px 12px;
        font-size: 0.65rem;
        min-height: 30px;
        gap: 5px;
        border-radius: 6px;
    }
    .download-btn i, .video-btn i { font-size: 0.7rem; }
}

@media (max-width: 768px) {
    .music-card { border-radius: 10px; }
    .music-card-info { padding: 8px; }
    .music-card-info h3 { font-size: 0.65rem; margin-bottom: 2px; }
    .music-card-info p { font-size: 0.55rem; }
    .music-duration { font-size: 0.5rem; margin-top: 4px; }
    .play-btn { width: 34px; height: 34px; font-size: 0.8rem; border-width: 1.5px; }
    .music-card-actions { margin-top: 6px; gap: 6px; }
    .download-btn, .video-btn {
        padding: 4px 8px;
        font-size: 0.5rem;
        min-height: 24px;
        gap: 3px;
        border-radius: 4px;
    }
    .download-btn i, .video-btn i { font-size: 0.55rem; }
}

@media (max-width: 480px) {
    .music-card { border-radius: 8px; }
    .music-card-info { padding: 5px; }
    .music-card-info h3 { font-size: 0.5rem; margin-bottom: 1px; }
    .music-card-info p { font-size: 0.4rem; }
    .music-duration { font-size: 0.4rem; margin-top: 2px; }
    .play-btn { width: 28px; height: 28px; font-size: 0.65rem; border-width: 1.5px; }
    .music-card-actions { margin-top: 4px; gap: 4px; }
    .download-btn, .video-btn {
        padding: 3px 6px;
        font-size: 0.4rem;
        min-height: 20px;
        gap: 3px;
        border-radius: 4px;
    }
    .download-btn i, .video-btn i { font-size: 0.45rem; }
    .music-placeholder { font-size: 1.2rem; }
}

@media (max-width: 400px) {
    .download-btn .btn-text,
    .video-btn .btn-text {
        display: none;
    }
    .download-btn i,
    .video-btn i {
        font-size: 0.5rem;
    }
}

/* ========================================
   ALL SONGS LIST
   ======================================== */

.all-songs-section {
    margin-top: 60px;
}

.songs-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.songs-table {
    width: 100%;
    border-collapse: collapse;
}

.songs-table thead {
    background: rgba(201, 168, 76, 0.08);
    border-bottom: 2px solid rgba(201, 168, 76, 0.15);
}

.songs-table th {
    padding: 15px 20px;
    text-align: left;
    color: #c9a84c;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.songs-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.songs-table tbody tr {
    transition: all 0.3s ease;
}

.songs-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.songs-table tbody tr.active {
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid #c9a84c;
}

.song-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.song-thumb {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.song-thumb-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.song-title {
    font-weight: 500;
    color: #fff;
}

.song-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.song-play-btn,
.song-download-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.song-play-btn {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.song-play-btn:hover {
    background: #c9a84c;
    color: #0a0a0a;
    transform: scale(1.05);
}

.song-play-btn.playing {
    background: #c9a84c;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.song-download-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.song-download-btn:hover {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-color: #4CAF50;
    transform: scale(1.05);
}

.song-video-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.2);
    text-decoration: none;
}

.song-video-btn:hover {
    background: #ff4444;
    color: #ffffff;
    transform: scale(1.05);
}

/* ========================================
   SONGS LIST - RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .songs-table th, .songs-table td {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    .song-play-btn, .song-download-btn, .song-video-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .songs-table th, .songs-table td {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    .song-play-btn, .song-download-btn, .song-video-btn {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }
    .song-thumb, .song-thumb-placeholder {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .songs-table thead {
        display: none;
    }
    .songs-table tbody tr {
        display: block;
        padding: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .songs-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4px 0;
        border: none;
        font-size: 0.75rem;
    }
    .songs-table td:first-child { display: none; }
    .songs-table td:nth-child(3) { display: none; }
    .songs-table td:nth-child(4) { display: none; }
    .song-info { flex: 1; }
    .song-title { font-size: 0.8rem; }
    .song-play-btn, .song-download-btn, .song-video-btn {
        width: 24px;
        height: 24px;
        font-size: 0.55rem;
        border-width: 1px;
    }
    .song-thumb, .song-thumb-placeholder {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* ========================================
   AUDIO PLAYER
   ======================================== */

.audio-player {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px 30px;
    backdrop-filter: blur(20px);
    margin-top: 40px;
}

.player-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.player-art {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.player-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    flex: 1;
    min-width: 150px;
}

.player-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.player-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.player-controls button {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.player-controls button:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.player-controls #playBtn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    font-size: 1.2rem;
}

.player-controls #playBtn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 150px;
}

.player-progress span {
    font-size: 0.7rem;
    color: var(--text-muted);
    min-width: 35px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.player-volume i {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.player-volume input[type="range"] {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: var(--glass-border);
    border-radius: 2px;
    outline: none;
}

.player-volume input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.download-btn-player {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    color: #c9a84c;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.download-btn-player:hover {
    background: #c9a84c;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.lyrics-toggle {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.lyrics-toggle:hover {
    background: var(--glass);
    border-color: var(--primary);
}

.lyrics-panel {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: var(--glass);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    max-height: 300px;
    overflow-y: auto;
}

.lyrics-panel.active {
    display: block;
}

.lyrics-content {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 2;
    white-space: pre-wrap;
}

/* ========================================
   AUDIO PLAYER - RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
    .audio-player { padding: 20px; }
    .player-container { gap: 15px; }
    .player-art { width: 60px; height: 60px; }
    .player-controls button { width: 30px; height: 30px; font-size: 0.9rem; }
    .player-controls #playBtn { width: 40px; height: 40px; font-size: 1rem; }
    .download-btn-player { padding: 5px 12px; font-size: 0.7rem; gap: 6px; }
}

@media (max-width: 768px) {
    .audio-player { padding: 15px; border-radius: 15px; }
    .player-container { flex-direction: column; align-items: stretch; gap: 12px; }
    .player-art { width: 50px; height: 50px; }
    .player-info { min-width: unset; text-align: center; }
    .player-info h4 { font-size: 0.85rem; }
    .player-info p { font-size: 0.7rem; }
    .player-progress { min-width: unset; }
    .player-controls { justify-content: center; }
    .player-volume input[type="range"] { width: 60px; }
    .download-btn-player { padding: 4px 10px; font-size: 0.65rem; gap: 5px; }
}

@media (max-width: 480px) {
    .audio-player { padding: 12px; border-radius: 12px; }
    .player-art { width: 40px; height: 40px; }
    .player-info h4 { font-size: 0.75rem; }
    .player-info p { font-size: 0.6rem; }
    .player-controls button { width: 28px; height: 28px; font-size: 0.8rem; padding: 3px; }
    .player-controls #playBtn { width: 35px; height: 35px; font-size: 0.9rem; }
    .player-volume input[type="range"] { width: 40px; }
    .download-btn-player { padding: 3px 6px; font-size: 0.55rem; gap: 3px; }
    .player-progress span { font-size: 0.6rem; min-width: 28px; }
}

//* ============================================
   GALLERY SECTION - FIXED
   ============================================ */

.gallery-section {
    padding: 80px 0;
    background: var(--dark);
}

.gallery-simple-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Gallery Grid Container */
.gallery-grid {
    overflow: hidden;
    position: relative;
}

/* Gallery Track - Horizontal Carousel */
.gallery-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    will-change: transform;
    cursor: grab;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 5px 0;
}

.gallery-track:active {
    cursor: grabbing;
}

/* Individual Gallery Item */
.gallery-item {
    flex: 0 0 calc(25% - 15px);
    min-width: 200px;
    max-width: 300px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Overlay on hover */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: #c9a84c;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    margin: 0 0 3px 0;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin: 0;
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-btn:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #0a0a0a;
    transform: scale(1.05);
}

.gallery-counter {
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    min-width: 55px;
    text-align: center;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    padding: 40px;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

.gallery-lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.gallery-lightbox-close:hover {
    transform: rotate(90deg);
}

.gallery-lightbox-caption {
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin-top: 15px;
}

.gallery-lightbox-caption h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #c9a84c;
    margin: 0 0 5px 0;
}

.gallery-lightbox-caption p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ============================================
   GALLERY - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 180px;
        max-width: 280px;
        aspect-ratio: 4/3;
    }
    .gallery-track {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
        min-width: 150px;
        max-width: 240px;
        aspect-ratio: 3/4;
    }
    .gallery-track {
        gap: 12px;
    }
    .gallery-nav-btn {
        width: 38px;
        height: 38px;
    }
    .gallery-lightbox {
        padding: 20px;
    }
    .gallery-lightbox img {
        max-width: 95%;
        max-height: 70vh;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 85%;
        min-width: unset;
        max-width: 100%;
        aspect-ratio: 3/4;
        margin: 0 auto;
    }
    .gallery-track {
        gap: 10px;
        padding: 5px 10px;
    }
    .gallery-lightbox {
        padding: 15px;
    }
    .gallery-lightbox img {
        max-width: 100%;
        max-height: 60vh;
    }
    .gallery-lightbox-close {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }
    .gallery-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    .gallery-counter {
        font-size: 0.75rem;
        min-width: 45px;
    }
}

/* Small screens - show one image at a time */
@media (max-width: 360px) {
    .gallery-item {
        flex: 0 0 100%;
        aspect-ratio: 3/4;
    }
    .gallery-track {
        gap: 8px;
    }
}

/* ========================================
   SHOWS SECTION
   ======================================== */

.shows-section {
    padding: 100px 0;
    background: var(--dark);
}

.shows-timeline {
    position: relative;
}

.show-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    align-items: center;
}

.show-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.show-date {
    text-align: center;
    min-width: 80px;
    padding: 15px;
    background: var(--glass);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.show-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
}

.show-day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.show-details {
    flex: 1;
}

.show-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.show-venue,
.show-time {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.show-venue i,
.show-time i {
    color: var(--primary);
    margin-right: 8px;
}

.show-description {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.show-action {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.no-shows {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    .show-action {
        justify-content: center;
    }
    .show-date {
        min-width: 60px;
        padding: 10px;
    }
    .show-day {
        font-size: 1.5rem;
    }
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.booking-section {
    padding: 100px 0;
    background: var(--dark);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.booking-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.booking-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat {
    padding: 15px;
    background: var(--glass);
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.stat i {
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.booking-contact {
    padding: 15px;
    background: var(--glass);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.booking-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-contact i {
    font-size: 1.5rem;
    color: #25D366;
}

.booking-form-wrapper {
    background: var(--glass);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: var(--dark);
}

@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .booking-info h2 {
        font-size: 2rem;
    }
    .booking-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .booking-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .booking-stats {
        grid-template-columns: 1fr 1fr;
    }
    .booking-form-wrapper {
        padding: 20px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 60px 0 30px;
    background: var(--secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-link a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.admin-link a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   FLOATING PLAYER
   ======================================== */

.floating-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.floating-player.active {
    transform: translateY(0);
}

.floating-player-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.floating-player-art {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.floating-player-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-player-info {
    flex: 1;
    min-width: 120px;
}

.floating-player-info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.floating-player-info p {
    font-size: 0.75rem;
    color: #aaa;
}

.floating-player-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.floating-player-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px 8px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-player-controls button:hover {
    color: #c9a84c;
    background: rgba(255, 255, 255, 0.05);
}

.floating-player-controls #floatingPlayBtn {
    background: #c9a84c;
    color: #0a0a0a;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.floating-player-controls #floatingPlayBtn:hover {
    background: #a8893a;
    transform: scale(1.05);
}

.floating-player-progress {
    flex: 1;
    min-width: 100px;
    max-width: 300px;
}

.floating-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.floating-progress-fill {
    height: 100%;
    background: #c9a84c;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.floating-player-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.floating-download-btn,
.floating-close-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.floating-download-btn:hover {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
}

.floating-close-btn:hover {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

@media (max-width: 768px) {
    .floating-player { padding: 8px 12px; }
    .floating-player-content { gap: 10px; }
    .floating-player-art { width: 40px; height: 40px; }
    .floating-player-info h4 { font-size: 0.8rem; }
    .floating-player-info p { font-size: 0.65rem; }
    .floating-player-controls { gap: 5px; }
    .floating-player-controls button { width: 30px; height: 30px; font-size: 0.8rem; }
    .floating-player-controls #floatingPlayBtn { width: 35px; height: 35px; font-size: 0.9rem; }
    .floating-player-progress { min-width: 60px; max-width: 120px; }
    .floating-download-btn, .floating-close-btn { padding: 5px 8px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .floating-player-info { min-width: 80px; }
    .floating-player-info h4 { font-size: 0.7rem; }
    .floating-player-info p { display: none; }
    .floating-player-progress { min-width: 40px; max-width: 80px; }
}
/* ========================================
   FLOATING PLAYER - LYRICS PANEL
   ======================================== */

.floating-lyrics-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.floating-lyrics-btn:hover {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
}

.floating-lyrics-btn.active {
    color: #c9a84c;
}

.floating-lyrics-panel {
    display: none;
    margin-top: 10px;
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
}

.floating-lyrics-panel.active {
    display: block;
}

.floating-lyrics-content {
    color: #aaaaaa;
    font-size: 0.85rem;
    line-height: 2;
    white-space: pre-wrap;
}

.floating-lyrics-panel::-webkit-scrollbar {
    width: 4px;
}

.floating-lyrics-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.floating-lyrics-panel::-webkit-scrollbar-thumb {
    background: #c9a84c;
    border-radius: 2px;
}

/* Floating player active state */
.floating-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.floating-player.active {
    transform: translateY(0);
}

.floating-player.hidden {
    transform: translateY(100%);
}

@media (max-width: 768px) {
    .floating-lyrics-panel {
        max-height: 150px;
        padding: 10px 15px;
    }
    .floating-lyrics-content {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-lyrics-panel {
        max-height: 120px;
        padding: 8px 12px;
    }
    .floating-lyrics-content {
        font-size: 0.65rem;
    }
}
@media (max-width: 480px) {
    .gallery-simple-wrapper {
        padding: 0;  /* No padding on mobile */
    }
    .gallery-track .gallery-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        aspect-ratio: 3/4 !important; /* Taller images */
        border-radius: 8px;
        overflow: hidden;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* ============================================
   LOADING INDICATOR
   ============================================ */

#playerLoading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    backdrop-filter: blur(10px);
}

#playerLoading .spinner {
    font-size: 2.5rem;
    color: #c9a84c;
    margin-bottom: 15px;
    animation: spin 1s linear infinite;
}

#playerLoading p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

#playerLoading .loading-progress {
    color: #888;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Loading state for play buttons */
.song-play-btn.loading {
    color: #c9a84c;
    cursor: wait;
}

.song-play-btn.loading i {
    animation: spin 1s linear infinite;
}

.music-card .play-btn.loading {
    color: #c9a84c;
    cursor: wait;
}

.music-card .play-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Loading notification */
.loading-notification {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #c9a84c;
    border-radius: 10px;
    z-index: 10002;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.loading-notification i {
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeOutDown {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to { opacity: 0; transform: translateX(-50%) translateY(20px); }
}
/* TikTok Icon Styling */
.footer-social a.social-tiktok:hover {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    border-color: #ff0050;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 0, 80, 0.4);
}

.footer-social a.social-tiktok i {
    color: #fff;
}

/* Hero Social Icons */
.hero-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-social a:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(201, 168, 76, 0.3);
}

.hero-social a:hover i {
    color: #0a0a0a !important;
}