:root {
    --bg-dark: #0a0a0c;
    --bg-card: #141418;
    --neon-blue: #00f2ff;
    --neon-purple: #bc13fe;
    --text-white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    padding: 20px 0;
    background: rgba(0,0,0,0.8);
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.jpg');
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 600px;
    margin: 20px 0;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--neon-purple);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Music Section */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.release-card {
    background: var(--bg-card);
    padding: 15px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.release-card:hover {
    transform: translateY(-5px);
}

.album-art {
    width: 60px;
    height: 60px;
    background-color: #333;
    margin-right: 15px;
}

/* Table */
.shows-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.shows-table th {
    text-align: left;
    color: #666;
    padding-bottom: 10px;
}

.shows-table td {
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.ticket-link {
    color: var(--neon-purple);
    text-decoration: none;
}

footer {
    padding: 50px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}
