@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #000;
            color: #e6b3ff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .background-blur {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(25px) brightness(0.2);
            transform: scale(1.1);
            z-index: -1;
            animation: slowZoom 20s ease-in-out infinite alternate;
        }

        @keyframes slowZoom {
            0% { transform: scale(1.1); }
            100% { transform: scale(1.15); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 60px 0;
        }

        .profile-picture {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 4px solid rgba(230, 179, 255, 0.3);
            margin-bottom: 40px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(153, 51, 255, 0.7);
            transition: transform 0.3s ease;
        }

        .profile-picture:hover {
            transform: scale(1.05);
        }

        .profile-picture img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .artist-name {
        font-family: 'Creepster', cursive;
        font-size: 5rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 8px;
        margin-bottom: 20px;
        color: #e6b3ff;
        text-shadow: 
            3px 3px 0px #9933ff,
            6px 6px 0px #cc66ff,
            9px 9px 20px rgba(153, 51, 255, 0.8);
        position: relative;
        filter: drop-shadow(0 0 10px rgba(230, 179, 255, 0.5));
    }

    .artist-name::before {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        color: rgba(230, 179, 255, 0.1);
        z-index: -1;
        transform: translate(4px, 4px);
    }

    .artist-name::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 20%;
        width: 60%;
        height: 20px;
        background: linear-gradient(to bottom, 
            rgba(230, 179, 255, 0.8) 0%,
            rgba(204, 102, 255, 0.6) 30%,
            rgba(153, 51, 255, 0.3) 70%,
            transparent 100%);
        border-radius: 0 0 50% 50%;
        filter: blur(1px);
    }

        @keyframes graffitiBounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes textShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .bio {
            font-size: 1.2rem;
            color: #cc99ff;
            max-width: 600px;
            margin-bottom: 40px;
            text-shadow: 1px 1px 4px rgba(153, 51, 255, 0.8);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(230, 179, 255, 0.1);
            border-radius: 50%;
            text-decoration: none;
            color: #e6b3ff;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(230, 179, 255, 0.2);
        }

        .social-link:hover {
            background: rgba(153, 51, 255, 0.3);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(153, 51, 255, 0.5);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Latest Tracks Section */
        .tracks-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 50px;
            text-shadow: 2px 2px 8px rgba(153, 51, 255, 0.8);
        }

        .tracks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .track-card {
            background: rgba(230, 179, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 25px;
            border: 1px solid rgba(230, 179, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .track-card:hover {
            transform: translateY(-10px);
            background: rgba(153, 51, 255, 0.08);
            box-shadow: 0 20px 60px rgba(153, 51, 255, 0.4);
        }

        .track-cover {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .track-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .track-card:hover .track-cover img {
            transform: scale(1.05);
        }

        .track-title {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .track-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            color: #cc99ff;
        }

        .track-status {
            background: rgba(230, 179, 255, 0.1);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
        }

        .track-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .track-platform-link {
            padding: 8px 12px;
            background: rgba(230, 179, 255, 0.1);
            border-radius: 8px;
            text-decoration: none;
            color: #e6b3ff;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .track-platform-link:hover {
            background: rgba(153, 51, 255, 0.2);
        }

        .platform-icon-small {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .artist-name {
                font-family: 'Permanent Marker', cursive;
                font-size: 3rem;
                letter-spacing: 4px;
                text-shadow: 
                    2px 2px 0px #9933ff,
                    4px 4px 0px #cc66ff,
                    6px 6px 15px rgba(153, 51, 255, 0.8);
            }
            
            .profile-picture {
                width: 150px;
                height: 150px;
            }
            
            .bio {
                font-size: 1rem;
                padding: 0 20px;
            }
            
            .tracks-grid {
                grid-template-columns: 1fr;
            }
            
            .social-links {
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .artist-name {
                font-family: 'Permanent Marker', cursive;
                font-size: 2.5rem;
                letter-spacing: 2px;
                text-shadow: 
                    1px 1px 0px #9933ff,
                    2px 2px 0px #cc66ff,
                    3px 3px 10px rgba(153, 51, 255, 0.8);
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        /* Email Subscription Styles */
.subscription-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(230, 179, 255, 0.1);
    margin-top: 40px;
}

.subscribe-btn {
    background: linear-gradient(45deg, #9933ff, #cc66ff);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(153, 51, 255, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(153, 51, 255, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    margin: 15% auto;
    padding: 30px;
    border: 1px solid rgba(230, 179, 255, 0.2);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.close {
    color: #cc99ff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #e6b3ff;
}

.email-form {
    margin-top: 20px;
}

.email-input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid rgba(230, 179, 255, 0.3);
    border-radius: 8px;
    background: rgba(230, 179, 255, 0.1);
    color: #e6b3ff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(230, 179, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: #9933ff;
    box-shadow: 0 0 10px rgba(153, 51, 255, 0.3);
}

.subscribe-btn {
    background: rgba(230, 179, 255, 0.1);
    color: #e6b3ff;
    border: 1px solid rgba(230, 179, 255, 0.2);
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.subscribe-btn:hover {
    background: rgba(153, 51, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(153, 51, 255, 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    color: #cc66ff;
    margin-top: 15px;
}

.error-message {
    color: #ff66cc;
    margin-top: 15px;
}

/* Audio Preview Modal Styles */
.audio-modal {
    max-width: 500px;
    background: linear-gradient(145deg, #1a0d1a, #2d1a2d);
    border: 1px solid #9933ff;
}

.audio-preview-container {
    text-align: center;
    padding: 20px;
}

.preview-cover {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(153, 51, 255, 0.3);
}

.preview-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-controls {
    margin-top: 30px;
}

.custom-audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.play-pause-btn {
    background: linear-gradient(45deg, #9933ff, #cc66ff);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(153, 51, 255, 0.5);
}

.play-pause-btn .pause-icon {
    display: none;
}

.play-pause-btn.playing .play-icon {
    display: none;
}

.play-pause-btn.playing .pause-icon {
    display: inline;
}

.progress-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    height: 6px;
    background: #333;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9933ff, #cc66ff);
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    font-size: 12px;
    color: #cc99ff;
    text-align: center;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.volume-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #cc99ff;
    transition: color 0.3s ease;
}

.volume-btn:hover {
    color: #9933ff;
}

.volume-slider {
    width: 60px;
    height: 4px;
    background: #333;
    outline: none;
    border-radius: 2px;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #9933ff;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #9933ff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Preview Button Styles */
.preview-button {
    background: linear-gradient(45deg, #9933ff, #cc66ff);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.preview-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 51, 255, 0.4);
}

.preview-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.preview-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for audio controls */
@media (max-width: 768px) {
    .custom-audio-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-container {
        order: -1;
        width: 100%;
    }
    
    .volume-container {
        justify-content: center;
    }
    
    .audio-modal {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .preview-cover {
        width: 150px;
        height: 150px;
    }
}

/* Loading spinner for audio controls */
.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error state styling */
.play-pause-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}