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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    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: 40px;
}

.header h1 {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-family: 'Brush Script MT', 'Comic Sans MS', cursive;
    transform: skew(-8deg) rotate(-2deg);
    line-height: 1;
    color: transparent;
    text-shadow: 
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        3px 3px 5px rgba(0,0,0,0.5);
    max-width: 100%;
    overflow: hidden;
}

.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: 
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 30px #00ff00;
    transform: skew(-8deg) rotate(-2deg);
    z-index: 1;
    animation: greenGlow 3s ease-in-out infinite;
}

.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: 
        2px 2px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        0 0 10px #ffff00,
        0 0 20px #ffff00,
        0 0 30px #ffff00;
    transform: skew(-8deg) rotate(-2deg);
    z-index: 1;
    animation: yellowGlow 2.5s ease-in-out infinite;
}

@keyframes greenGlow {
    0% {
        filter: brightness(0.6) drop-shadow(0 0 5px #00ff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 8px #00ff00,
            0 0 15px #00ff00,
            0 0 20px #00ff00;
    }
    25% {
        filter: brightness(1.2) drop-shadow(0 0 12px #00ff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 12px #00ff00,
            0 0 24px #00ff00,
            0 0 36px #00ff00;
    }
    50% {
        filter: brightness(0.4) drop-shadow(0 0 3px #00ff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 5px #00ff00,
            0 0 10px #00ff00,
            0 0 15px #00ff00;
    }
    75% {
        filter: brightness(1.1) drop-shadow(0 0 10px #00ff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 10px #00ff00,
            0 0 20px #00ff00,
            0 0 30px #00ff00;
    }
    90% {
        filter: brightness(0.7) drop-shadow(0 0 6px #00ff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 7px #00ff00,
            0 0 14px #00ff00,
            0 0 21px #00ff00;
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 15px #00ff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 15px #00ff00,
            0 0 30px #00ff00,
            0 0 45px #00ff00;
    }
}

@keyframes yellowGlow {
    0% {
        filter: brightness(0.6) drop-shadow(0 0 5px #ffff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 8px #ffff00,
            0 0 15px #ffff00,
            0 0 20px #ffff00;
    }
    25% {
        filter: brightness(1.2) drop-shadow(0 0 12px #ffff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 12px #ffff00,
            0 0 24px #ffff00,
            0 0 36px #ffff00;
    }
    50% {
        filter: brightness(0.4) drop-shadow(0 0 3px #ffff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 5px #ffff00,
            0 0 10px #ffff00,
            0 0 15px #ffff00;
    }
    75% {
        filter: brightness(1.1) drop-shadow(0 0 10px #ffff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 10px #ffff00,
            0 0 20px #ffff00,
            0 0 30px #ffff00;
    }
    90% {
        filter: brightness(0.7) drop-shadow(0 0 6px #ffff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 7px #ffff00,
            0 0 14px #ffff00,
            0 0 21px #ffff00;
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 15px #ffff00);
        text-shadow: 
            2px 2px 0 #000,
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            0 0 15px #ffff00,
            0 0 30px #ffff00,
            0 0 45px #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 {
        margin-bottom: 30px;
    }
    
    .header h1 {
        font-size: 3rem;
        letter-spacing: -2px;
        transform: skew(-6deg) rotate(-1deg);
    }
    
    .header h1::before,
    .header h1::after {
        transform: skew(-6deg) rotate(-1deg);
    }
    
    .spotify-section {
        margin-bottom: 40px;
    }
    
    .spotify-embed {
        padding: 15px;
    }
    
    .spotify-embed iframe {
        height: 280px !important;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .link {
        font-size: 1.1rem;
        padding: 12px 0;
    }
    
    .show {
        padding: 15px 0;
    }
    
    .show-date {
        font-size: 1rem;
    }
    
    .show-venue {
        font-size: 1.1rem;
    }
    
    .show-city {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 10px;
    }
    
    .header h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
        transform: skew(-4deg) rotate(-0.5deg);
    }
    
    .header h1::before,
    .header h1::after {
        transform: skew(-4deg) rotate(-0.5deg);
    }
    
    .header h1::after {
        left: calc(50% - 8px);
    }
    
    .spotify-embed {
        padding: 10px;
    }
    
    .spotify-embed iframe {
        height: 200px !important;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .link {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .show {
        padding: 12px 0;
    }
    
    .show-date {
        font-size: 0.9rem;
    }
    
    .show-venue {
        font-size: 1rem;
    }
    
    .show-city {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header h1::after {
        left: calc(50% - 6px);
    }
    
    .spotify-embed iframe {
        height: 180px !important;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
}
