<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Impact', 'Arial Black', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #d60606;
    line-height: 1.6;
}

header {
    background-color: #000000;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

h1 {
    text-align: center;
    font-size: 3.5em;
    color: #d60606;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 5px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
}

nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    text-align: center;
    border-top: 2px solid #d60606;
    border-bottom: 2px solid #d60606;
}

nav a {
    color: #d60606;
    text-decoration: none;
    padding: 10px 25px;
    margin: 0 10px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav a:hover {
    background-color: #ffda0a;
    transform: translateY(-2px);
}

section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.intro {
    text-align: center;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-bottom: 50px;
}

.intro h2 {
    font-size: 2.8em;
    color: #d60606;
    margin-bottom: 20px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.intro p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
}

.band-image {
    text-align: center;
    margin: 50px 0;
}

.band-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #d60606;
}

.band-image figcaption {
    margin-top: 15px;
    font-style: italic;
    color: #b0b0b0;
    font-size: 1.1em;
    font-family: 'Courier New', monospace;
}

footer {
    background-color: #000000;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 2px solid #d60606;
}

footer p {
    color: #b0b0b0;
    font-family: 'Courier New', monospace;
}

</style>
