body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0d0d0d, #1a1a1a, #262626, #1a1a1a, #0d0d0d);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: -1;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    text-align: center;
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #444;
    box-shadow: 0 0 15px #000;
}

header h1, header p {
    animation: neon 1.5s ease-in-out infinite alternate;
    font-family: 'Audiowide', cursive;
}

header h1 {
    font-size: 3em;
    margin: 0;
    letter-spacing: 5px;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

.branding-banner {
    text-align: center;
    background: #000;
    padding: 10px 0;
    width: 100%;
}

.branding-banner img {
    width: 100%;
}

#artists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0;
}

.artist {
    margin: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1 1 300px;
}

.artist img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 15px #ff00ff, 0 0 25px #ff00ff, 0 0 35px #ff00ff;
    transition: transform 0.3s ease-in-out;
}

.artist img:hover {
    transform: scale(1.1);
}

.artist h2 {
    font-size: 2em;
    margin: 20px 0 10px;
    font-family: 'Orbitron', sans-serif;
}

.artist p {
    font-size: 1em;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
}

#story {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    box-shadow: 0 0 15px #000;
    margin: 0 20px;
}

#story h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

#story p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid #444;
    box-shadow: 0 0 15px #000;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

@keyframes neon {
    from {
        text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 80px #ff00ff, 0 0 120px #ff00ff;
    }
    to {
        text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff, 0 0 40px #ff00ff, 0 0 50px #ff00ff, 0 0 60px #ff00ff, 0 0 70px #ff00ff;
    }
}

.neon-text {
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 80px #ff00ff, 0 0 120px #ff00ff;
}

/* Media Queries */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    .artist {
        flex: 1 1 100%;
        margin: 10px 0;
    }

    .artist img {
        max-width: 200px;
    }

    .artist h2 {
        font-size: 1.5em;
    }

    .artist p {
        font-size: 0.9em;
        padding: 15px;
    }

    #story {
        padding: 30px 10px;
        margin: 0 10px;
    }

    #story h2 {
        font-size: 2em;
    }

    #story p {
        font-size: 1em;
    }

    footer p {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    header p {
        font-size: 0.9em;
    }

    .artist img {
        max-width: 150px;
    }

    .artist h2 {
        font-size: 1.2em;
    }

    .artist p {
        font-size: 0.8em;
    }

    #story {
        padding: 20px 5px;
        margin: 0 5px;
    }

    #story h2 {
        font-size: 1.5em;
    }

    #story p {
        font-size: 0.9em;
    }

    footer p {
        font-size: 0.7em;
    }
}
