/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: white;
    background: url('images/WWYD_HTV_bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Header */
.header {
    padding: 20px 0;
}

.band-logo {
    width: 600px;
    max-width: 80%;
}

/* Containers */
.container {
    width: 70%;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
}

/* Latest News */
.album-cover {
    width: 100%;
    max-width: 500px;
    margin-top: 10px;
    border-radius: 5px;
}

/* Upcoming Shows */
.show-details {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
}

/* Links */
a {
    color: #ff4444;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}