* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #1a0000, #000);
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Glow effect */
.glow {
    position: fixed;
    inset: 0;
    background:
            radial-gradient(circle at 30% 20%, rgba(198,62,0,0.25), transparent 40%),
            radial-gradient(circle at 70% 80%, rgba(198,0,0,0.15), transparent 45%);
    pointer-events: none;
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kicker {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 10vw, 7rem);
    letter-spacing: 0.1em;
    color: #c62000;
    text-shadow: 0 0 40px rgba(198, 39, 0, 0.8);
    margin: 0;
}
.tagline {
    margin-top: 1rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
}

.countdown div {
    background: rgba(198, 46, 0, 0.08);
    border: 1px solid rgba(198, 46, 0, 0.3);
    padding: 1rem 1.2rem;
    min-width: 80px;
}

.countdown span {
    font-size: 2rem;
    font-weight: 600;
    display: block;
}

.countdown small {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* CTA */
.cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.free {
    color: #c62e00;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(198,46,0,0.9);
}

.price {
    opacity: 0.7;
}

/* ARTISTS */
.artists {
    padding: 5rem 2rem;
    text-align: center;
}

.artists h2 {
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
}

.main-dj {
    margin-bottom: 0rem;
}

.main-dj .label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.main-dj h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: #c62000;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(198, 32, 0, 0.5);
    margin: 0;
}

.other-djs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lineup-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lineup-tier--headliners .lineup-row {
    gap: 1.2rem;
}

.lineup-tier--headliners .dj-name {
    font-size: 2.6rem;
    letter-spacing: 0.12em;
    text-shadow: 0 0 25px rgba(198, 32, 0, 0.7);
}

.lineup-tier--headliners .lineup-row .dash {
    font-size: 2.6rem;
    opacity: 0.7;
}

.lineup-tier--support .lineup-row {
    gap: 0.6rem;
}

.lineup-tier--support .dj-name {
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    opacity: 0.85;
    text-shadow: 0 0 8px rgba(198, 32, 0, 0.4);
}

.lineup-tier--support .lineup-row .dash {
    font-size: 1.3rem;
    opacity: 0.5;
}

.dj-name {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: #c62000;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(198, 32, 0, 0.5);
    margin: 0;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.dj-name:hover {
    transform: scale(1.08);
    text-shadow: 0 0 30px rgba(198, 32, 0, 0.9);
}

.dj-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.other-djs h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: #c62000;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(198, 32, 0, 0.5);
    margin: 0;
}

.lineup-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.lineup-row .name {
    text-align: center;
}

.lineup-row .dash {
    display: inline-block;
    color: #c62000;
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    opacity: 0.6;
}

.main-dj,
.other-djs {
    display: flex;
    justify-content: center;
}

/* INFO */
.info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

.info-block h4 {
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    opacity: 0.4;
    font-size: 0.8rem;
}

@media (max-width: 600px) {

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .countdown div {
        min-width: 70px;
        padding: 0.8rem;
    }

    .main-dj h3 {
        font-size: 3rem;
    }

    .artists {
        padding: 3rem 1.5rem;
    }

    .info {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

}

/* 🎟️ TICKET BUTTON */
.ticket-btn {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.2em;
    font-size: 1rem;
    text-decoration: none;
    color: #000;
    background: linear-gradient(90deg, #c62000, #c65200);
    box-shadow:
            0 0 20px rgba(198, 46, 0, 0.8),
            inset 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.ticket-btn:hover {
    transform: scale(1.05);
    box-shadow:
            0 0 35px rgba(198, 46, 0, 1),
            inset 0 0 15px rgba(255, 255, 255, 0.3);
}

/* 🔥 Extra agressief tijdens laatste 24u */
.last-24h .ticket-btn {
    animation: ticketPulse 1.2s infinite alternate;
}

@keyframes ticketPulse {
    from {
        box-shadow: 0 0 20px rgba(198, 46, 0, 0.7);
    }
    to {
        box-shadow: 0 0 45px rgba(198, 46, 0, 1);
    }
}

/* 🔴 COUNTDOWN DANGER MODE */
.countdown.danger div {
    animation: pulseRed 1.5s infinite;
    border-color: rgba(198, 0, 0, 0.6);
    box-shadow: 0 0 25px rgba(198, 0, 0, 0.7);
}

@keyframes pulseRed {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ⚡ GLITCH TITLE */
.glitch {
    position: relative;
    animation: glitchMain 2s infinite;
}

.glitch::before,
.glitch::after {
    content: "BOILER ROOM";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.glitch::before {
    color: #c60000;
    z-index: -1;
    animation: glitchRed 1.5s infinite;
}

.glitch::after {
    color: #c65f00;
    z-index: -2;
    animation: glitchOrange 1.2s infinite;
}

@keyframes glitchMain {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

@keyframes glitchRed {
    0% { clip-path: inset(0 0 90% 0); }
    50% { clip-path: inset(40% 0 30% 0); }
    100% { clip-path: inset(0 0 85% 0); }
}

@keyframes glitchOrange {
    0% { clip-path: inset(85% 0 0 0); }
    50% { clip-path: inset(30% 0 40% 0); }
    100% { clip-path: inset(90% 0 0 0); }
}