/* --- GLOBAL BACKGROUND --- */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;

    /* Dark modern gradient */
    background:
        radial-gradient(circle at top center,
            rgba(255, 200, 80, 0.25),
            rgba(0, 0, 0, 0.9) 60%
        ),
        linear-gradient(
            to bottom right,
            #0a0a0a,
            #1a1a1a,
            #111111
        );

    background-attachment: fixed;
    background-size: cover;
    color: #f2f2f2;
    position: relative;
}

/* Subtle red/yellow stage-light accent */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at bottom right,
        rgba(255, 40, 40, 0.18),
        rgba(255, 200, 0, 0.12),
        transparent 70%
    );
    pointer-events: none;
}

/* --- RETURN ICON --- */
header {
    width: 100%;
    text-align: center;
    padding: 20px 0;
}

.return-icon {
    font-size: 32px;
    text-decoration: none;
    color: #f2f2f2;
    transition: 0.3s;
}

.return-icon:hover {
    color: #ffcc66;
}

/* --- BAND NAME --- */
.band-name {
    text-align: center;
    font-size: 42px;
    letter-spacing: 3px;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #ffcc66; /* gold accent */
    text-transform: uppercase;
}

/* --- MAIN CONTENT --- */
main {
    width: 90%;
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Images */
.image-container img {
    width: 100%;
    margin: 15px 0;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 200, 80, 0.15);
}


/*


  <!--
.video-container {
    width: 100%;
    margin-top: 25px;
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 200, 80, 0.15);
}
*/

-->