* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #fff;
    line-height: 1.4;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
}

/* Interactive Background */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

/* Spotify Section */
.spotify-section {
    margin-bottom: 60px;
    text-align: center;
}

.spotify-embed {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.spotify-embed iframe {
    border-radius: 12px !important;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-family: 'Arial Black', 'Impact', sans-serif;
    transform: skew(-5deg);
    line-height: 1;
    color: transparent;
}

.header h1::before {
    content: 'SA';
    position: absolute;
    top: 0;
    left: 0;
    background: #00ff00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        3px 3px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        0 0 30px #00ff00,
        0 0 60px #00ff00,
        0 0 90px #00ff00;
    transform: skew(-5deg);
    z-index: 1;
    animation: greenGlow 2s ease-in-out infinite alternate;
}

.header h1::after {
    content: 'GOD';
    position: absolute;
    top: 0;
    left: calc(50% - 10px);
    background: #ffff00;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        3px 3px 0 #000,
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        0 0 30px #ffff00,
        0 0 60px #ffff00,
        0 0 90px #ffff00;
    transform: skew(-5deg);
    z-index: 1;
    animation: yellowGlow 2s ease-in-out infinite alternate;
}

@keyframes greenGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 20px #00ff00);
        text-shadow: 
            3px 3px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            0 0 30px #00ff00,
            0 0 60px #00ff00,
            0 0 90px #00ff00;
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 40px #00ff00);
        text-shadow: 
            3px 3px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            0 0 40px #00ff00,
            0 0 80px #00ff00,
            0 0 120px #00ff00;
    }
    100% {
        filter: brightness(1.5) drop-shadow(0 0 60px #00ff00);
        text-shadow: 
            3px 3px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            0 0 60px #00ff00,
            0 0 100px #00ff00,
            0 0 150px #00ff00;
    }
}

@keyframes yellowGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 20px #ffff00);
        text-shadow: 
            3px 3px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            0 0 30px #ffff00,
            0 0 60px #ffff00,
            0 0 90px #ffff00;
    }
    50% {
        filter: brightness(1.3) drop-shadow(0 0 40px #ffff00);
        text-shadow: 
            3px 3px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            0 0 40px #ffff00,
            0 0 80px #ffff00,
            0 0 120px #ffff00;
    }
    100% {
        filter: brightness(1.5) drop-shadow(0 0 60px #ffff00);
        text-shadow: 
            3px 3px 0 #000,
            -2px -2px 0 #000,
            2px -2px 0 #000,
            -2px 2px 0 #000,
            0 0 60px #ffff00,
            0 0 100px #ffff00,
            0 0 150px #ffff00;
    }
}

/* Sections */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: normal;
    text-transform: lowercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link {
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #fff;
    text-transform: lowercase;
    transition: all 0.2s ease;
    display: block;
    width: fit-content;
}

.link:hover {
    opacity: 0.6;
    transform: translateX(5px);
}

/* Shows */
.shows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.show {
    padding: 20px 0;
    border-bottom: 1px solid #fff;
}

.show-date {
    font-size: 1.1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-venue {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.show-city {
    margin-bottom: 10px;
    opacity: 0.7;
}

.show-link {
    color: #fff;
    text-decoration: underline;
    text-transform: lowercase;
    transition: opacity 0.2s ease;
}

.show-link:hover {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }
    
    .header h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .show-date {
        font-size: 1rem;
    }
    
    .show-venue {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 10px;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}
