/* Global styles */
body {
    background: #2b213a;
    color: white;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Vector art section */
.vector-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.vector-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-art {
    width: 100%;
    height: 100%;
}

/* Grid lines */
.grid-line {
    stroke: #45b7d1;
    stroke-width: 1;
    opacity: 0.3;
    animation: gridPulse 2s ease-in-out infinite;
}

/* Mountains */
.mountain {
    fill: none;
    stroke: #4ecdc4;
    stroke-width: 2;
    filter: drop-shadow(0 0 5px #4ecdc4);
    animation: mountainPulse 1.5s ease-in-out infinite;
}

.mountain:nth-child(2) { animation-delay: 0.25s; }
.mountain:nth-child(3) { animation-delay: 0.5s; }
.mountain:nth-child(4) { animation-delay: 0.75s; }

/* Sun */
.sun {
    fill: #ff6b6b;
    filter: drop-shadow(0 0 20px #ff6b6b);
    animation: sunPulse 2.5s ease-in-out infinite;
}

.sun-inner {
    fill: #ff8787;
    filter: drop-shadow(0 0 10px #ff8787);
    animation: sunInnerPulse 2.5s ease-in-out infinite;
}

/* SoundCloud player section */
.player-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.soundcloud-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    pointer-events: auto;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(69, 183, 209, 0.3);
    animation: containerPulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes gridPulse {
    0% { opacity: 0.2; }
    50% { opacity: 0.6; }
    100% { opacity: 0.2; }
}

@keyframes mountainPulse {
    0% { filter: drop-shadow(0 0 4.5px #4ecdc4); }
    50% { filter: drop-shadow(0 0 12px #4ecdc4); }
    100% { filter: drop-shadow(0 0 4.5px #4ecdc4); }
}

@keyframes sunPulse {
    0% { filter: drop-shadow(0 0 22.5px #ff6b6b); }
    50% { filter: drop-shadow(0 0 37.5px #ff6b6b); }
    100% { filter: drop-shadow(0 0 22.5px #ff6b6b); }
}

@keyframes sunInnerPulse {
    0% { filter: drop-shadow(0 0 12px #ff8787); }
    50% { filter: drop-shadow(0 0 22.5px #ff8787); }
    100% { filter: drop-shadow(0 0 12px #ff8787); }
}

@keyframes containerPulse {
    0% { box-shadow: 0 0 22.5px rgba(69, 183, 209, 0.3); }
    50% { box-shadow: 0 0 37.5px rgba(69, 183, 209, 0.6); }
    100% { box-shadow: 0 0 22.5px rgba(69, 183, 209, 0.3); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .soundcloud-container {
        max-width: 90%;
        padding: 10px;
    }
    
    .soundcloud-container iframe {
        height: 350px;
    }
}
