/* ==========================================
   GLOBAL VARIABLES (COLORS & EFFECTS)
========================================== */
:root {
    --bg-dark: #0c0d1f;
    --text-light: #ffffff;
    
    /* Neon Accents */
    --neon-pink: #d26cf3;
    --neon-cyan: #5be8f9;
    
    /* Glassmorphism Variables */
    --glass-bg: linear-gradient(135deg, rgba(12, 13, 31, 0.85) 0%, rgba(210, 108, 243, 0.15) 100%);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-highlight: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.7), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

/* ==========================================
   GLOBAL DREAMBOX STYLES
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(rgba(240, 74, 131, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 74, 131, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--text-light);
    overflow-x: hidden;
    padding-bottom: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CRT overlay */
.crt-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 255, 0, 0.06));
    background-size: 100% 4px, 6px 100%;
    z-index: 9999;
    pointer-events: none;
    transform: translateZ(0);
}

/* header/nav */
header {
    background: rgba(91, 232, 249, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-bottom: 4px solid var(--neon-pink);
    margin-bottom: 10px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    gap: 15px;
}
nav .logo {
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 3px 3px 0px var(--neon-pink), 6px 6px 0px var(--neon-cyan);
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-shrink: 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 10px;
    transition: all 0.2s;
    border-radius: 5px;
}
nav ul li a:hover {
    background: var(--neon-pink);
    color: var(--bg-dark);
    box-shadow: 0px 0px 10px rgba(210, 108, 243, 0.8);
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    font-size: 2.5rem;
    color: var(--neon-pink);
    text-shadow: 4px 4px 0px var(--neon-cyan);
    margin-bottom: 25px;
    text-align: center;
}
h3 {
    font-size: 1.8rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px var(--bg-dark), 3px 3px 0px var(--neon-pink);
}

/* Footer */
footer {
    text-align: center;
    background: rgba(12, 13, 31, 0.8);
    border-top: 4px solid var(--neon-cyan);
    padding: 30px;
    margin-top: 40px;
}
footer a {
    color: var(--neon-pink);
    font-size: 1.2rem;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    color: var(--neon-cyan);
    text-shadow: 0px 0px 8px var(--neon-cyan);
}
.host-tag {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ==========================================
   DREAMBOX COMPONENTS (FLYERS, REVIEWS)
========================================== */
.flyer-container, .statement-section, .review-card, .calendar-board, .gig-breakdown, .media-box, .webring-container {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 2px solid var(--glass-border);
    border-top: 3px solid var(--glass-highlight);
    border-left: 3px solid var(--glass-highlight);
    border-radius: 16px; 
    box-shadow: var(--glass-shadow);
    padding: clamp(15px, 4vw, 30px); 
    margin-bottom: 30px;
    transform: translateZ(0); 
}

/* Flyers & Events */
.flyer-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
}

.event-flyer {
    flex: 0 0 45%;
    width: 100%;
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    border: 3px solid var(--text-light);
    box-shadow: 5px 5px 0px var(--neon-cyan);
}

.show-details { 
    flex: 1;
    min-width: 250px;
}

.date-badge {
    display: inline-block;
    background: var(--neon-pink);
    color: var(--bg-dark);
    padding: 5px 15px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
    box-shadow: 3px 3px 0px var(--neon-cyan);
    border-radius: 4px;
    line-height: 1.2;
}

.lineup-list {
    list-style: none;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 20px;
}

.lineup-list li {
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    line-height: 1.2;
}

.lineup-list li:nth-child(odd) { color: var(--text-light); }
.lineup-list li:nth-child(even) { color: var(--neon-cyan); }

.logistics