:root {
    --primary-neon: #00ff9d;
    --dwp-gold: #c5a059;
}
body {
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}
.font-header {
    font-family: 'Archivo Black', sans-serif;
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Background with Ken Burns Effect */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    animation: kenburns 20s infinite alternate;
}
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* DWP Style Button */
.btn-ticket {
    background: white;
    color: black;
    padding: 14px 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid white;
}
.btn-ticket:hover {
    background: transparent;
    color: white;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}

/* Countdown Style */
.countdown-item {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
}

/* Artist Card Hover */
.artist-card img {
    transition: all 0.6s ease;
    filter: grayscale(100%);
}
.artist-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}