:root {
    --kelly-green: #4CBB17;
    --black: #050505;
    --dark-green: #112b05;
    --white: #f0f0f0;
}

/* --- RESET & LAYOUT FIXES --- */
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

html {
    scroll-behavior: smooth;
    background-color: var(--black);
}

body { 
    background-color: var(--black); 
    color: var(--white); 
    font-family: 'Arial Black', sans-serif; 
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- CUSTOM CURSOR --- */
.cursor {
    width: 20px; height: 20px;
    border: 2px solid var(--kelly-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
    transform-origin: center;
    background: transparent;
}

/* --- NOISE OVERLAY (CANVAS) --- */
#noise-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.08;
}

/* --- NAVIGATION --- */
nav {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between;
    align-items: center;
    padding: 30px 50px; z-index: 9999;
    mix-blend-mode: difference;
    color: var(--kelly-green);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--kelly-green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-right { display: flex; gap: 30px; align-items: center; }
.nav-right a { color: var(--kelly-green); text-decoration: none; font-size: 1rem; letter-spacing: 2px; font-weight: bold; text-transform: uppercase; }
.nav-right a:hover { text-decoration: underline; }

/* --- HERO SECTION --- */
.hero-split {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--kelly-green);
}

.hero-left, .hero-right {
    position: relative;
    z-index: 1;
}

.giant-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: clamp(4rem, 12vw, 12rem);
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px var(--kelly-green);
    margin: 0;
}

.giant-horizontal {
    font-size: clamp(4rem, 12vw, 15rem);
    line-height: 0.7;
    color: var(--kelly-green);
    position: relative;
    display: inline-block;
    margin: 0;
}

.hero-meta { 
    margin-top: 20px; 
    border-top: 1px solid var(--kelly-green); 
    padding-top: 10px; 
    font-family: monospace; 
    color: var(--kelly-green);
    font-size: 1.2rem;
    font-weight: bold;
}

/* --- GLITCH EFFECT --- */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #cc00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00ccff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(38px, 9999px, 81px, 0); }
    20% { clip: rect(6px, 9999px, 96px, 0); }
    40% { clip: rect(59px, 9999px, 15px, 0); }
    60% { clip: rect(98px, 9999px, 3px, 0); }
    80% { clip: rect(21px, 9999px, 52px, 0); }
    100% { clip: rect(84px, 9999px, 63px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(6px, 9999px, 86px, 0); }
    20% { clip: rect(91px, 9999px, 8px, 0); }
    40% { clip: rect(10px, 9999px, 66px, 0); }
    60% { clip: rect(27px, 9999px, 65px, 0); }
    80% { clip: rect(78px, 9999px, 90px, 0); }
    100% { clip: rect(4px, 9999px, 14px, 0); }
}

/* --- GRID SECTIONS --- */
.section { 
    padding: 100px 5%; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    border-bottom: 1px solid #222; 
    opacity: 0; 
    transform: translateY(50px); 
    transition: all 0.8s ease-out; 
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: 100%;
}

/* --- UPCOMING RELEASE SECTION --- */
#upcoming-release {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(76,187,23,0.03) 0%, transparent 70%);
    overflow: hidden;
}

#upcoming-release::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(76,187,23,0.03) 2px,
        rgba(76,187,23,0.03) 4px
    );
    animation: scan-lines 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scan-lines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.release-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.release-cover {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.release-cover::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, var(--kelly-green), #fff, var(--kelly-green), #fff);
    background-size: 400% 400%;
    animation: border-glow 3s ease infinite;
    z-index: -1;
    border-radius: 2px;
}

@keyframes border-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.release-cover img {
    width: 100%;
    max-width: 320px;
    display: block;
    position: relative;
    z-index: 1;
    animation: pulse-glow 2s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.15);
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(76,187,23,0.4), 0 0 40px rgba(76,187,23,0.2), 0 10px 30px rgba(0,0,0,0.8);
    }
    50% { 
        box-shadow: 0 0 40px rgba(76,187,23,0.8), 0 0 80px rgba(76,187,23,0.4), 0 10px 30px rgba(0,0,0,0.8);
    }
}

.release-info .release-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 6px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: title-glitch 5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(76,187,23,0.5);
}

.release-info .release-title::before,
.release-info .release-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.release-info .release-title::before {
    color: #ff00ff;
    animation: glitch-1 2.5s infinite;
}

.release-info .release-title::after {
    color: #00ffff;
    animation: glitch-2 2.5s infinite;
}

@keyframes title-glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
}

@keyframes glitch-1 {
    0%, 90%, 100% { opacity: 0; transform: translate(0); }
    92% { opacity: 0.7; transform: translate(-3px, 0); }
    94% { opacity: 0; }
}

@keyframes glitch-2 {
    0%, 90%, 100% { opacity: 0; transform: translate(0); }
    93% { opacity: 0.7; transform: translate(3px, 0); }
    95% { opacity: 0; }
}

.release-info .release-type {
    font-family: monospace;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.release-countdown { 
    display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; margin: 20px 0;
}
.release-countdown .cd { 
    color: var(--kelly-green); 
    font-weight: 900; 
    font-family: monospace;
    padding: 8px 12px;
    background: rgba(76,187,23,0.05);
    border: 1px solid rgba(76,187,23,0.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.release-countdown .cd::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76,187,23,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.release-countdown .num { 
    font-size: 1.8rem; 
    display: inline-block; 
    min-width: 48px; 
    text-align: right; 
    margin-right: 6px;
    animation: pulse-num 1s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(76,187,23,0.6), 0 0 15px rgba(76,187,23,0.3);
    font-weight: 900;
}

@keyframes pulse-num {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.release-presave .btn,
.release-cta .btn {
    background: var(--kelly-green);
    color: var(--black);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid var(--kelly-green);
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(76,187,23,0.5); }
    50% { box-shadow: 0 0 25px rgba(76,187,23,0.8), 0 0 50px rgba(76,187,23,0.4); }
}

.release-presave .btn:hover,
.release-cta .btn:hover {
    background: var(--black);
    color: var(--kelly-green);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(76,187,23,1), 0 0 60px rgba(76,187,23,0.6);
}

/* --- FINAL COUNTDOWN MODE (< 24 HOURS) --- */
#upcoming-release.final-countdown {
    background: radial-gradient(ellipse at center, rgba(255,50,50,0.08) 0%, rgba(76,187,23,0.05) 50%, transparent 90%);
    animation: screen-pulse 1s ease-in-out infinite;
}

@keyframes screen-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.002); }
}

#upcoming-release.final-countdown::before {
    animation: scan-lines-fast 2s linear infinite;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,50,50,0.08) 2px,
        rgba(255,50,50,0.08) 4px
    );
}

@keyframes scan-lines-fast {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

#upcoming-release.final-countdown .release-cover {
    animation: float-intense 1.5s ease-in-out infinite, shake 0.5s ease-in-out infinite;
}

@keyframes float-intense {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

#upcoming-release.final-countdown .release-cover::before {
    background: linear-gradient(45deg, #ff0000, var(--kelly-green), #ff00ff, var(--kelly-green), #ff0000);
    background-size: 600% 600%;
    animation: border-glow-intense 1s ease infinite;
}

@keyframes border-glow-intense {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#upcoming-release.final-countdown .release-cover img {
    animation: pulse-glow-intense 1s ease-in-out infinite;
}

@keyframes pulse-glow-intense {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(255,50,50,0.6), 0 0 60px rgba(76,187,23,0.4), 0 10px 30px rgba(0,0,0,0.8);
    }
    50% { 
        box-shadow: 0 0 60px rgba(255,50,50,0.9), 0 0 100px rgba(76,187,23,0.6), 0 10px 30px rgba(0,0,0,0.8);
    }
}

#upcoming-release.final-countdown .release-title {
    animation: title-glitch-intense 0.5s ease-in-out infinite, text-flicker 0.1s ease-in-out infinite;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,50,50,0.8), 0 0 10px rgba(76,187,23,0.8);
}

@keyframes text-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

#upcoming-release.final-countdown .release-countdown .num {
    animation: pulse-num-intense 0.5s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255,50,50,0.9), 0 0 25px rgba(76,187,23,0.6);
    font-size: 2rem;
    color: #fff;
}

@keyframes pulse-num-intense {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

#upcoming-release.final-countdown .release-countdown .cd {
    border-color: rgba(255,50,50,0.5);
    background: rgba(255,50,50,0.1);
    animation: shake 0.5s ease-in-out infinite;
}

/* --- POST-RELEASE CELEBRATION MODE (< 48 HOURS AFTER) --- */
#upcoming-release.post-release {
    background: radial-gradient(ellipse at center, rgba(76,187,23,0.12) 0%, rgba(255,200,0,0.08) 40%, transparent 80%);
    animation: rainbow-pulse 3s ease-in-out infinite;
    border-top: 3px solid var(--kelly-green);
    border-bottom: 3px solid var(--kelly-green);
}

@keyframes rainbow-pulse {
    0%, 100% { 
        filter: hue-rotate(0deg) brightness(1);
    }
    50% { 
        filter: hue-rotate(20deg) brightness(1.1);
    }
}

#upcoming-release.post-release::before {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(76,187,23,0.1) 10px,
        rgba(76,187,23,0.1) 20px
    );
    animation: diagonal-scroll 4s linear infinite;
}

@keyframes diagonal-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

#upcoming-release.post-release .release-cover {
    animation: bounce 2s ease-in-out infinite, rotate-slow 10s linear infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#upcoming-release.post-release .release-cover::before {
    background: linear-gradient(45deg, #ff0080, #00ff80, #8000ff, #ff8000, #ff0080);
    background-size: 800% 800%;
    animation: rainbow-border 2s ease infinite;
    inset: -8px;
}

@keyframes rainbow-border {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

#upcoming-release.post-release .release-cover img {
    animation: pulse-rainbow 1.5s ease-in-out infinite;
    filter: brightness(1.2) contrast(1.2) saturate(1.3);
}

@keyframes pulse-rainbow {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(255,0,128,0.5), 0 0 80px rgba(76,187,23,0.5), 0 10px 40px rgba(0,0,0,0.6);
    }
    50% { 
        box-shadow: 0 0 60px rgba(0,255,128,0.7), 0 0 120px rgba(128,0,255,0.5), 0 10px 40px rgba(0,0,0,0.6);
    }
}

#upcoming-release.post-release .release-title {
    animation: rainbow-text 3s linear infinite, bounce-text 2s ease-in-out infinite;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

@keyframes rainbow-text {
    0% { color: #4CBB17; text-shadow: 0 0 20px rgba(76,187,23,1); }
    25% { color: #ff0080; text-shadow: 0 0 20px rgba(255,0,128,1); }
    50% { color: #00ff80; text-shadow: 0 0 20px rgba(0,255,128,1); }
    75% { color: #8000ff; text-shadow: 0 0 20px rgba(128,0,255,1); }
    100% { color: #4CBB17; text-shadow: 0 0 20px rgba(76,187,23,1); }
}

@keyframes bounce-text {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#upcoming-release.post-release .release-countdown {
    display: none !important;
}

@media (max-width: 800px) {
    .release-grid { grid-template-columns: 1fr; }
    .release-cover img { max-width: 60%; margin: 0 auto; }
}

@media (max-width: 768px) {
    .grid-layout { grid-template-columns: 1fr; }
}

.grid-header h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    border-bottom: 4px solid var(--kelly-green);
    display: inline-block;
}

.spotify-embed-container {
    background: #0a0a0a;
    border: 2px solid var(--kelly-green);
    height: 400px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--kelly-green);
    box-shadow: 0 0 15px rgba(76, 187, 23, 0.1);
}

.spotify-embed-container iframe {
    position: relative;
    z-index: 2;
    filter: invert(1) hue-rotate(180deg) brightness(0.8) contrast(1.2); /* Make it brutal/green */
    transition: filter 0.3s;
    width: 90%;
}

.spotify-embed-container:hover iframe {
    filter: none; /* Show original on hover */
}

.glitch-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        transparent 0,
        rgba(76, 187, 23, 0.1) 2px,
        transparent 4px
    );
    z-index: 1;
    pointer-events: none;
}

/* --- LYRICS --- */
.lyrics-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.lyric-line {
    font-size: clamp(2rem, 3.5vw, 4rem);
    color: #333;
    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: none;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    /* Use transparent border to reserve space */
    border-left: 5px solid transparent;
    padding-left: 10px;
}

.lyric-line:hover, .lyric-line[data-active="true"] {
    color: var(--kelly-green);
    transform: translateX(30px) scale(1.05);
    text-shadow: 0 0 20px var(--kelly-green), 2px 2px 0 var(--white);
    /* Only change color, not layout */
    border-color: var(--white);
}

/* --- MANIFESTO / TOUR --- */
.tour-section h2 {
    font-size: clamp(3rem, 5vw, 6rem);
    color: var(--kelly-green);
    margin-bottom: 50px;
}

.tour-list {
    border-top: 5px solid var(--white);
}

.tour-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 30px 20px;
    border-bottom: 1px solid #333;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    transition: background 0.3s;
    align-items: center;
    gap: 20px;
}

.tour-item:hover {
    background: #111;
}

/* Date & Time Column */
.date-time-col {
    display: flex;
    flex-direction: column;
}

.tour-item .date { 
    font-family: monospace; 
    color: var(--kelly-green); 
    font-weight: bold;
}

.time-range {
    font-size: 0.7em;
    color: #888;
    font-family: monospace;
    margin-top: 5px;
}

/* Venue Column */
.venue-info {
    display: flex;
    flex-direction: column;
}

.tour-item .venue { 
    font-weight: 900; 
    text-transform: uppercase; 
    color: var(--white);
}

.location {
    font-size: 0.6em;
    color: #666;
    letter-spacing: 2px;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Countdown Column */
.countdown { 
    text-align: right; 
    color: var(--kelly-green); 
    font-family: monospace; 
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 0 0 5px rgba(76, 187, 23, 0.5);
}

/* --- FOOTER --- */
footer {
    min-height: 50vh;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 10px solid var(--kelly-green);
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-brand {
    text-align: center;
    width: 100%;
}

.footer-brand h3 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--kelly-green);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.footer-tagline {
    font-family: monospace;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.footer-social-expanded {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer-social-expanded a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    padding: 10px 20px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.footer-social-expanded a:hover {
    color: var(--kelly-green);
    border: 1px solid var(--kelly-green);
    box-shadow: 0 0 15px rgba(76, 187, 23, 0.3);
    background: rgba(76, 187, 23, 0.05);
}

.footer-social-expanded a::before {
    content: attr(data-label);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--kelly-green);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.footer-social a:hover {
    color: var(--kelly-green);
    text-shadow: 0 0 10px var(--kelly-green);
}

/* --- FILTER BAR --- */
.filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #666;
    padding: 8px 16px;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--kelly-green);
    color: var(--kelly-green);
    box-shadow: 0 0 10px rgba(76, 187, 23, 0.2);
}

.lyric-line .meta {
    font-size: 0.8rem;
    color: #555;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: normal;
}

.album-song-list {
    margin-top: 14px;
    margin-left: 6px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.album-song-item {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: #6b6b6b;
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.lyric-line:hover .album-song-item,
.lyric-line[data-active="true"] .album-song-item {
    color: #95d67a;
}


/* --- TOUR JSON UPDATE --- */
.tour-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr; /* Adjust columns for venue + location in one box */
    align-items: center;
    gap: 15px;
}

.venue-info {
    display: flex;
    flex-direction: column;
}

.venue {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
}

.location {
    font-size: 0.8rem;
    color: #666;
    font-family: monospace;
    letter-spacing: 2px;
}

/* --- RELEASE DAY CELEBRATION CANVAS --- */
#release-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 3;
    display: none;
}

#release-canvas.active {
    display: block;
}
