/* Import a retro/cyberpunk font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');

/* CSS Variables for Neon Colors - Softer Palette */
:root {
    --neon-cyan: #00d4ff;
    --neon-purple: #9d4edd;
    --neon-red: #ff006e;
    --neon-green: #06ffa5;
    --neon-pink: #ff10f0;
    --neon-yellow: #ffff00;
    --dark-bg: #0f0f1e;
    --darker-bg: #08080f;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --soft-glow: rgba(157, 78, 221, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Sunflower Bear - Top Left Corner */
.sunflower-bear-link {
    position: fixed;
    top: 18px;
    left: 15px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.sunflower-bear-link:hover {
    transform: scale(1.1);
}

.sunflower-bear {
    width: 80px;
    height: auto;
    display: block;
}

/* Background Videos */
.background-videos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: videoFade 20s ease-in-out infinite;
}

.bg-video-1 {
    animation-delay: 0s;
}

.bg-video-2 {
    animation-delay: 10s;
}

@keyframes videoFade {
    0%, 45% {
        opacity: 0.08;
        filter: blur(3px) brightness(0.4);
    }
    50%, 95% {
        opacity: 0;
        filter: blur(5px) brightness(0.3);
    }
    100% {
        opacity: 0;
        filter: blur(3px) brightness(0.4);
    }
}

/* Navigation Tabs */
.nav-tabs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(8, 8, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 100;
    border-bottom: 2px solid var(--neon-purple);
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
}

.tab-btn {
    padding: 15px 30px;
    background: rgba(15, 15, 30, 0.6);
    border: 2px solid var(--neon-purple);
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
}

.tab-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.tab-btn:last-child {
    border-radius: 0 4px 4px 0;
}

.tab-btn:not(:last-child) {
    border-right: none;
}

.tab-btn:hover {
    background: rgba(157, 78, 221, 0.2);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: rgba(157, 78, 221, 0.4);
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 20px rgba(157, 78, 221, 0.5),
        inset 0 0 15px rgba(157, 78, 221, 0.2);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px 80px;
    margin-bottom: 60px;
}

.logo-container {
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px var(--soft-glow));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Retro TV Frame */
.tv-frame {
    margin: 40px auto;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
}

.tv-screen {
    background: linear-gradient(135deg, #2a2a3a 0%, #1a1a2a 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow:
        0 0 0 8px #3a3a4a,
        0 0 0 12px #1a1a2a,
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.tv-screen::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--neon-red) 0%, transparent 70%);
    border-radius: 50%;
    animation: powerLight 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes powerLight {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.tv-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 0, 0, 0.1) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 5;
}

.album-cover {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 30px rgba(157, 78, 221, 0.3),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.tv-static {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 3;
    opacity: 0.5;
}

.tv-stand {
    width: 200px;
    height: 15px;
    background: linear-gradient(to bottom, #3a3a4a, #2a2a3a);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.tv-stand::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: linear-gradient(to bottom, #2a2a3a, #1a1a2a);
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.neon-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--neon-pink);
    text-shadow:
        0 0 20px rgba(255, 16, 240, 1),
        0 0 40px rgba(255, 255, 0, 0.8),
        0 0 60px rgba(0, 212, 255, 0.5);
    letter-spacing: 6px;
    margin-bottom: 20px;
    animation: subtleGlow 4s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        text-shadow:
            0 0 15px var(--neon-purple),
            0 0 25px rgba(157, 78, 221, 0.5);
    }
    50% {
        text-shadow:
            0 0 20px var(--neon-purple),
            0 0 35px rgba(157, 78, 221, 0.7),
            0 0 45px rgba(157, 78, 221, 0.3);
    }
}

.cyber-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: var(--text-gray);
    letter-spacing: 3px;
}

.cyber-text.small {
    font-size: 1rem;
    margin-bottom: 20px;
}

.tagline {
    margin-top: 20px;
}

/* Section Styles */
section {
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--neon-pink);
    text-shadow:
        0 0 15px rgba(255, 16, 240, 0.8),
        0 0 25px rgba(255, 255, 0, 0.6),
        0 0 35px rgba(0, 212, 255, 0.4);
    letter-spacing: 4px;
}

/* Streaming Links Grid */
.streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.stream-btn {
    padding: 20px 30px;
    background: rgba(15, 15, 30, 0.6);
    border: 2px solid var(--neon-purple);
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(157, 78, 221, 0.2),
        inset 0 0 15px rgba(157, 78, 221, 0.05);
}

.stream-btn:hover {
    transform: translateY(-3px);
    background: rgba(15, 15, 30, 0.8);
    box-shadow:
        0 0 25px rgba(157, 78, 221, 0.4),
        inset 0 0 20px rgba(157, 78, 221, 0.1);
}

.stream-btn.spotify:hover {
    border-color: var(--neon-green);
    box-shadow:
        0 0 25px rgba(6, 255, 165, 0.4),
        inset 0 0 20px rgba(6, 255, 165, 0.1);
}
.stream-btn.apple:hover {
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 25px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
}
.stream-btn.youtube:hover {
    border-color: var(--neon-red);
    box-shadow:
        0 0 25px rgba(255, 0, 110, 0.4),
        inset 0 0 20px rgba(255, 0, 110, 0.1);
}
.stream-btn.tidal:hover { border-color: var(--neon-cyan); }
.stream-btn.soundcloud:hover { border-color: var(--neon-purple); }
.stream-btn.deezer:hover { border-color: var(--neon-purple); }

.btn-inner {
    position: relative;
    z-index: 2;
}

/* Bio Section */
.bio-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(15, 15, 30, 0.5);
    border: 2px solid var(--neon-purple);
    border-radius: 8px;
    box-shadow:
        0 0 25px rgba(157, 78, 221, 0.2),
        inset 0 0 20px rgba(157, 78, 221, 0.05);
}

.bio-text p {
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(15, 15, 30, 0.5);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    box-shadow:
        0 0 25px rgba(0, 212, 255, 0.2),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.neon-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.neon-input,
.neon-textarea {
    padding: 15px 20px;
    background: rgba(8, 8, 15, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 10px rgba(157, 78, 221, 0.15),
        inset 0 0 5px rgba(157, 78, 221, 0.08);
}

.neon-input:focus,
.neon-textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 0 10px rgba(0, 212, 255, 0.1);
}

.neon-input::placeholder,
.neon-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

.submit-btn {
    padding: 18px 40px;
    background: rgba(255, 16, 240, 0.2);
    border: 2px solid var(--neon-pink);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(255, 16, 240, 0.4),
        inset 0 0 10px rgba(255, 16, 240, 0.1);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 16, 240, 0.3);
    box-shadow:
        0 0 25px rgba(255, 16, 240, 0.6),
        0 0 35px rgba(255, 255, 0, 0.4),
        inset 0 0 20px rgba(255, 16, 240, 0.2);
}

.btn-glow {
    position: relative;
    z-index: 2;
}

/* Security Notice */
.security-notice {
    background: rgba(6, 255, 165, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.security-notice .cyber-text {
    color: var(--neon-green);
    font-size: 0.9rem;
    margin: 0;
}

/* File Upload */
.file-upload-container {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(8, 8, 15, 0.8);
    border: 2px dashed var(--neon-purple);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--neon-cyan);
    background: rgba(15, 15, 30, 0.9);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.file-upload-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.file-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.social-btn {
    padding: 20px 30px;
    background: rgba(15, 15, 30, 0.6);
    border: 2px solid var(--neon-purple);
    border-radius: 4px;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(157, 78, 221, 0.2),
        inset 0 0 10px rgba(157, 78, 221, 0.05);
}

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(15, 15, 30, 0.8);
    box-shadow:
        0 0 25px rgba(157, 78, 221, 0.4),
        inset 0 0 15px rgba(157, 78, 221, 0.1);
}

.social-btn.instagram:hover {
    border-color: var(--neon-red);
    box-shadow:
        0 0 25px rgba(255, 0, 110, 0.4),
        inset 0 0 15px rgba(255, 0, 110, 0.1);
}
.social-btn.twitter:hover {
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 25px rgba(0, 212, 255, 0.4),
        inset 0 0 15px rgba(0, 212, 255, 0.1);
}
.social-btn.tiktok:hover {
    border-color: var(--neon-green);
    box-shadow:
        0 0 25px rgba(6, 255, 165, 0.4),
        inset 0 0 15px rgba(6, 255, 165, 0.1);
}
.social-btn.discord:hover { border-color: var(--neon-purple); }

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-tabs {
        padding: 15px 10px;
        gap: 5px;
    }

    .tab-btn {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .container {
        padding-top: 90px;
    }

    .hero {
        padding: 40px 20px 60px;
    }

    .logo {
        max-width: 250px;
    }

    .tv-frame {
        max-width: 400px;
    }

    .tv-screen {
        padding: 20px;
    }

    .streaming-grid,
    .social-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .form-container,
    .bio-container {
        padding: 30px 20px;
    }

    section {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .neon-text {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

section {
    animation: fadeInUp 0.8s ease-out;
}

/* Album Download Container */
.album-download-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.album-card {
    background: rgba(15, 15, 30, 0.7);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    padding: 40px;
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.album-info {
    text-align: center;
    margin-bottom: 30px;
}

.album-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow:
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 35px rgba(0, 212, 255, 0.4);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.album-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.album-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.album-download-btn,
.browse-btn {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.browse-btn {
    padding: 18px 40px;
    background: rgba(6, 255, 165, 0.2);
    border: 2px solid var(--neon-green);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(6, 255, 165, 0.3),
        inset 0 0 10px rgba(6, 255, 165, 0.1);
}

.browse-btn:hover {
    transform: translateY(-2px);
    background: rgba(6, 255, 165, 0.3);
    box-shadow:
        0 0 25px rgba(6, 255, 165, 0.5),
        0 0 35px rgba(6, 255, 165, 0.3),
        inset 0 0 20px rgba(6, 255, 165, 0.2);
}

.tracks-container {
    margin-top: 40px;
}

.tracks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.back-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--neon-purple);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(157, 78, 221, 0.2);
    border-color: var(--neon-cyan);
    transform: translateX(-3px);
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-item {
    background: rgba(15, 15, 30, 0.6);
    border: 2px solid var(--neon-purple);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow:
        0 0 15px rgba(157, 78, 221, 0.2),
        inset 0 0 15px rgba(157, 78, 221, 0.05);
}

.download-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 25px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.download-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
    margin: 0;
}

.download-badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.download-badge.free {
    background: rgba(255, 255, 0, 0.2);
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.download-badge.premium {
    background: rgba(255, 0, 110, 0.2);
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
}

.download-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.download-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 16, 240, 0.2), rgba(255, 255, 0, 0.2));
    border: 2px solid var(--neon-pink);
    border-radius: 4px;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow:
        0 0 15px rgba(255, 16, 240, 0.3),
        inset 0 0 10px rgba(255, 255, 0, 0.1);
}

.download-btn:hover {
    background: linear-gradient(135deg, rgba(255, 16, 240, 0.4), rgba(255, 255, 0, 0.3));
    transform: translateY(-2px);
    box-shadow:
        0 0 25px rgba(255, 16, 240, 0.6),
        0 0 35px rgba(255, 255, 0, 0.4),
        inset 0 0 20px rgba(255, 16, 240, 0.2);
}

/* Track Actions */
.track-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.preview-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--neon-cyan);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 10px rgba(0, 212, 255, 0.2),
        inset 0 0 8px rgba(0, 212, 255, 0.05);
}

.preview-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 0 15px rgba(0, 212, 255, 0.15);
}

.track-download-btn {
    flex: 1;
    min-width: 140px;
}

/* Audio Preview Modal */
.audio-preview-content {
    max-width: 600px;
}

.audio-player-container {
    background: rgba(8, 8, 15, 0.6);
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    padding: 30px;
    margin-top: 20px;
}

#audioPreview {
    width: 100%;
    outline: none;
}

#audioPreview::-webkit-media-controls-panel {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9) 0%, rgba(8, 8, 15, 0.9) 100%);
}

#audioPreview::-webkit-media-controls-play-button,
#audioPreview::-webkit-media-controls-current-time-display,
#audioPreview::-webkit-media-controls-time-remaining-display {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* Donation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(8, 8, 15, 0.95) 100%);
    margin: 5% auto;
    padding: 40px;
    border: 2px solid var(--neon-purple);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow:
        0 0 40px rgba(157, 78, 221, 0.4),
        inset 0 0 30px rgba(157, 78, 221, 0.1);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--neon-red);
    text-shadow: 0 0 10px var(--neon-red);
}

.donation-options {
    margin: 30px 0;
}

.wallet-info {
    background: rgba(8, 8, 15, 0.6);
    border: 1px solid var(--neon-cyan);
    border-radius: 4px;
    padding: 20px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wallet-info p {
    margin: 5px 0;
    word-break: break-all;
    font-size: 0.9rem;
    line-height: 1.6;
}

.wallet-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.wallet-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 4px;
    word-break: break-all;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.crypto-qr {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    align-self: center;
    margin-top: 10px;
    background: white;
    padding: 10px;
    transition: all 0.3s ease;
}

.crypto-qr:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}

/* Payment Apps Section */
.payment-apps-section {
    margin-top: 30px;
}

.payment-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.payment-app-card {
    background: rgba(8, 8, 15, 0.6);
    border: 1px solid var(--neon-purple);
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-app-card:hover {
    box-shadow:
        0 0 20px rgba(157, 78, 221, 0.3),
        inset 0 0 15px rgba(157, 78, 221, 0.1);
    transform: translateY(-3px);
}

.payment-app-card h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment-qr {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
    background: white;
    padding: 10px;
}

.payment-qr:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.5);
}

.qr-code-container p {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 700;
}
