:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0a0f;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-accent: #4facfe;
    --hero-bg-image: url('/assets/mix1.png');
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
}

/* Abstract Background Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-elements::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    animation: floatShapes 15s ease-in-out infinite;
    filter: blur(30px);
    opacity: 0.5;
}

.shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.6)); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--text-primary);
    background: var(--accent-gradient);
    transform: translateY(-2px);
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.social-links a[href*="youtube"]:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4) !important;
}

.social-links a[href*="soundcloud"]:hover {
    background: linear-gradient(135deg, #ff5500, #ff7700) !important;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4) !important;
}

/* Hero Section */
.hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 5rem;
    background: 
        linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(245, 87, 108, 0.1)),
        var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 0, 0, 0.6);
    animation: glow 3s ease-in-out infinite alternate;
}

.hero-date {
    color: var(--text-secondary);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    padding: 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Player Section */
.player-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.player-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.player-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.player-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.player-buttons {
    display: flex;
    gap: 1rem;
}

.player-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.player-button:hover {
    transform: translateY(-2px);
}

.player-button[href*="youtube"]:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4) !important;
}

.player-button[href*="soundcloud"]:hover {
    background: linear-gradient(135deg, #ff5500, #ff7700) !important;
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.4) !important;
}

.player-embed {
    position: relative;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    cursor: pointer;
}

.play-overlay.visible {
    opacity: 1;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-overlay:hover .play-icon {
    transform: scale(1.1);
    background: var(--primary-gradient);
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-border);
    border-top: 3px solid var(--text-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.play-control {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.play-control:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

.time-controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
    min-width: 45px;
    font-weight: 500;
    flex-shrink: 0;
}

.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: height 0.2s ease;
}

.progress-container:hover {
    height: 8px;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 3px;
}

/* Tracklist Section */
.tracklist-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.tracklist {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
}

.tracklist-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.tracklist-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.track-item {
    display: grid;
    grid-template-columns: 60px 1fr 160px 180px;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    align-items: center;
}

.track-item:last-child {
    border-bottom: none;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.track-item.active {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.15), transparent);
    border-left: 4px solid var(--text-accent);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
}

.track-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-weight: 700;
    color: var(--text-accent);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.track-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.track-artist {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    margin-bottom: 0.1rem;
}

.track-remix {
    color: var(--text-accent);
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.3;
}

.now-playing {
    grid-column: 3;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-accent);
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
    white-space: nowrap;
    z-index: 10;
    min-width: 140px;
    text-align: center;
}

.track-time {
    grid-column: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', 'Monaco', monospace;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    min-width: 160px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Download Section */
.download-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.download-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-card:hover::before {
    opacity: 0.1;
}

.download-header {
    padding: 2.5rem 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.download-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.download-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.download-content {
    padding: 2rem 2.5rem 2.5rem;
}

.download-info {
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.download-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.download-info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.info-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: var(--glass-bg);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    padding: 1.5rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    border: 2px solid transparent;
    box-sizing: border-box;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-button i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 87, 108, 0.3);
}

.footer-social a[href*="youtube"]:hover {
    background: linear-gradient(135deg, #ff0000, #cc0000) !important;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4) !important;
}

.footer-social a[href*="soundcloud"]:hover {
    background: linear-gradient(135deg, #ff5500, #ff7700) !important;
    box-shadow: 0 15px 35px rgba(255, 85, 0, 0.4) !important;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.designer-credit {
    margin-top: 2rem;
}

.skab-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.skab-link:hover {
    color: var(--text-primary);
    background: var(--accent-gradient);
    transform: translateY(-2px);
}

.skab-logo {
    width: 45px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .back-link {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .back-link span {
        display: none;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero {
        height: 40vh;
        margin-top: 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .player-header {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
        padding: 1rem 1.5rem;
    }

    .player-header h2 {
        font-size: 1.1rem;
    }

    .player-buttons {
        gap: 0.8rem;
    }

    .player-buttons .player-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .player-controls {
        padding: 1rem 1.5rem;
        gap: 0.8rem;
    }

    .play-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .time-controls {
        gap: 0.8rem;
    }

    .player-time {
        font-size: 0.75rem;
        min-width: 40px;
    }

    .player-embed {
        padding-bottom: 45%;
    }

    .track-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        align-items: flex-start;
    }

    .track-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        margin-top: 0.2rem;
    }

    .track-info {
        gap: 0.4rem;
    }

    .track-title {
        font-size: 1rem;
    }

    .track-artist {
        font-size: 0.9rem;
    }

    .track-remix {
        font-size: 0.8rem;
    }

    .now-playing {
        position: static;
        grid-column: 1 / -1; 
        justify-self: start;
        margin-top: 0.5rem;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-left: 0;
        min-width: auto;
    }

    .track-time {
        position: static;
        grid-column: 1 / -1;
        justify-self: start;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        align-self: center;
        min-width: 120px;
        margin-top: 0.3rem;
    }

    .download-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-header {
        padding: 2rem 1.5rem 1rem;
    }

    .download-content {
        padding: 1.5rem;
    }

    .download-info {
        padding: 1rem;
    }

    .download-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .skab-link {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}