* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial Black', Arial, sans-serif;
    line-height: 1.8;
    color: #fff;
    background-color: #000;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 2rem 0;
    border-bottom: 3px solid #00ff00;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2.5rem;
    font-weight: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: 2px solid transparent;
}
.nav-menu a:hover {
    color: #00ff00;
    border: 2px solid #00ff00;
}
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #ff0000;
}
footer a {
    color: #00ff00;
}
.band-card {
    background: #111;
    padding: 2rem;
    margin: 1.5rem 0;
    border: 3px solid #ff0000;
    box-shadow: 0 4px 8px rgba(255,0,0,0.2);
}
.band-card h3 {
    color: #00ff00;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}
.band-genre {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.event-card {
    background: #222;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 5px solid #00ff00;
}
.event-card h3 {
    color: #00ff00;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.event-time {
    background: #ff0000;
    color: white;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.venue {
    color: #00ff00;
    margin-bottom: 0.5rem;
}
h2 {
    color: #00ff00;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #ff0000;
}
p {
    color: #ccc;
}