:root {
    --neon-green: #88cc00;    /* Muted Olive Green */
    --dark-grey: #222222;     /* Slightly lighter grey */
    --pure-black: #0d0d0d;    /* Off-black */
    --border-style: 3px solid var(--neon-green);
}

body {
    background-color: var(--pure-black);
    color: var(--neon-green);
    font-family: 'Courier Prime', monospace;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* CRT Scanline Effect */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(57, 255, 20, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 6s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

header {
    text-align: center;
    padding: 40px 20px;
}

.band-logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    text-shadow: 3px 3px 0px #ff007f, -3px -3px 0px #00ffff;
    margin-bottom: 20px;
}

.marquee {
    font-family: 'Press Start 2P', cursive;
    background: var(--neon-green);
    color: var(--pure-black);
    font-size: 0.8rem;
    padding: 5px 0;
    border: 2px solid white;
}

.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    align-items: center;
}

/* Responsive: Stack them on mobile */
@media (max-width: 900px) {
    .main-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Update the visualizer to stack the Turntable and About box */
.visualizer {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    gap: 30px; /* Adds space between turntable and about box */
}

#myCanvas {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px var(--neon-green));
}

.retro-box {
    border: var(--border-style);
    background: var(--dark-grey);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 8px 8px 0px var(--neon-green);
}

.retro-box h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    margin-top: 0;
    border-bottom: 1px solid var(--neon-green);
    padding-bottom: 10px;
}

.bio-text {
    line-height: 1.6;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 50px 20px;
    font-size: 0.9rem;
}

.nav-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensures they stack on mobile */
}

.nav-links a {
    color: var(--neon-green);
    text-decoration: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    padding: 10px 15px;
    border: 2px solid var(--neon-green);
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px var(--neon-green);
}

.nav-links a:hover {
    background: var(--neon-green);
    color: var(--pure-black);
    box-shadow: 0px 0px 0px var(--neon-green);
    transform: translate(4px, 4px);
}

/* Style the new Band Photo */
.band-photo {
    width: 100%;      /* Forces it to match the width of the show dates box */
    height: auto;     /* Maintains aspect ratio */
    border: var(--border-style);
    box-shadow: 8px 8px 0px var(--neon-green);
    margin-top: 30px; /* Space between tour dates and photo */
    filter: grayscale(30%) contrast(120%); /* Optional: Makes photo feel more "rock" */
}

.copyright {
    margin-top: 20px;
    opacity: 0.6;
}

/* GIG LIST STYLING */
.gig-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.gig-item {
    display: flex;
    align-items: center;
    border: 1px solid var(--neon-green);
    padding: 10px;
    position: relative;
    transition: all 0.2s ease;
    cursor: default;
}

/* This creates a "jagged" edge effect on the left */
.gig-item::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    width: 10px;
    height: 100%;
    background-image: radial-gradient(circle, var(--pure-black) 5px, transparent 5px);
    background-size: 10px 10px;
}

.gig-item:hover {
    background: var(--neon-green);
    color: var(--pure-black);
    transform: skewX(-5deg);
}

.gig-date {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    min-width: 80px;
    border-right: 2px dashed var(--neon-green);
    margin-right: 15px;
    padding-right: 10px;
    text-align: center;
}

.gig-details {
    display: flex;
    flex-direction: column;
}

.gig-title {
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.gig-loc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Change the date color on hover so it stays visible */
.gig-item:hover .gig-date {
    border-right-color: var(--pure-black);
    color: var(--pure-black);
}
