:root {
    --color-black: #000000;
    --color-pink: #ff006e;
    --color-cyan: #00d9ff;
    --color-purple: #a855f7;
    --color-green: #00ff88;
    --color-yellow: #ffff00;
    --color-red: #ff0055;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #6a6a6a;
    --gradient-flow: linear-gradient(135deg, var(--color-pink) 0%, var(--color-cyan) 25%, var(--color-purple) 50%, var(--color-green) 75%, var(--color-red) 100%);
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modal-open {
    overflow: hidden;
}

.animated-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: var(--color-black);
    overflow: hidden;
}

.bg-noise {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    animation: noiseFlicker 0.15s steps(2) infinite;
}

@keyframes noiseFlicker {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.08; }
}

.bg-gradient-overlay {
    position: absolute;
    inset: 0;
    animation: colorFlowModern 90s var(--transition-smooth) infinite;
    mix-blend-mode: screen; 
    will-change: background;
}

@keyframes colorFlowModern {
    0% {
        background: 
            radial-gradient(ellipse 1000px 600px at 20% 30%, rgba(255, 0, 110, 0.16), transparent 40%),
            radial-gradient(ellipse 900px 700px at 80% 70%, rgba(0, 217, 255, 0.16), transparent 40%),
            radial-gradient(ellipse 800px 600px at 50% 0%, rgba(0, 255, 136, 0.16), transparent 40%);
    }
    20% {
        background: 
            radial-gradient(ellipse 1050px 580px at 35% 50%, rgba(0, 217, 255, 0.16), transparent 40%),
            radial-gradient(ellipse 880px 720px at 72% 48%, rgba(255, 0, 85, 0.16), transparent 40%),
            radial-gradient(ellipse 950px 550px at 62% 22%, rgba(0, 255, 136, 0.16), transparent 40%);
    }
    40% {
        background: 
            radial-gradient(ellipse 1100px 620px at 52% 45%, rgba(255, 0, 85, 0.16), transparent 40%),
            radial-gradient(ellipse 880px 680px at 25% 72%, rgba(168, 85, 247, 0.16), transparent 40%),
            radial-gradient(ellipse 950px 620px at 82% 28%, rgba(0, 255, 136, 0.16), transparent 40%);
    }
    60% {
        background: 
            radial-gradient(ellipse 920px 610px at 32% 28%, rgba(255, 255, 0, 0.16), transparent 40%),
            radial-gradient(ellipse 1000px 700px at 78% 58%, rgba(0, 217, 255, 0.16), transparent 40%),
            radial-gradient(ellipse 880px 640px at 58% 82%, rgba(255, 0, 110, 0.16), transparent 40%);
    }
    80% {
        background: 
            radial-gradient(ellipse 1050px 590px at 25% 35%, rgba(0, 255, 136, 0.16), transparent 40%),
            radial-gradient(ellipse 920px 710px at 82% 68%, rgba(255, 0, 85, 0.16), transparent 40%),
            radial-gradient(ellipse 950px 600px at 52% 15%, rgba(168, 85, 247, 0.16), transparent 40%);
    }
    100% {
        background: 
            radial-gradient(ellipse 1000px 600px at 20% 30%, rgba(255, 0, 110, 0.16), transparent 40%),
            radial-gradient(ellipse 900px 700px at 80% 70%, rgba(0, 217, 255, 0.16), transparent 40%),
            radial-gradient(ellipse 800px 600px at 50% 0%, rgba(0, 255, 136, 0.16), transparent 40%);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: clamp(1.5rem, 6vh, 3rem) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 0.8s var(--transition-smooth);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-area {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: clamp(0.5rem, 3vw, 4rem);
}

.logo {
    width: clamp(140px, 26vw, 260px);
    height: auto;
    display: block;
    transition: transform 0.4s var(--transition-smooth), filter 0.4s var(--transition-smooth);
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.25)) drop-shadow(0 0 20px rgba(0, 217, 255, 0.15));
    will-change: transform;
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.35)) drop-shadow(0 0 30px rgba(0, 217, 255, 0.25));
}

.hero {
    text-align: center;
    padding: clamp(0.5rem, 2vh, 1rem) 0;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    font-weight: 700;
    text-transform: none;
    letter-spacing: clamp(0.06em, 1.2vw, 0.15em);
    line-height: 1.1;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    background: var(--gradient-flow);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 12s var(--transition-smooth) infinite;
    background-size: 200% 200%;
    max-width: 100%;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 50%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0.06em;
    margin-top: clamp(0.5rem, 2vh, 1rem);
    margin-bottom: clamp(0.5rem, 2vh, 1rem);
}

.release-badge {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.6em 1.4em;
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    font-weight: 600;
    text-transform: none;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    transition: all 0.3s var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.release-badge:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.countdown-wrapper {
    padding: clamp(1rem, 3vh, 2rem) 0;
    margin: clamp(0.5rem, 2vh, 1rem) 0;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s both;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: clamp(0.5rem, 2vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto;
    justify-items: center;
}

.countdown-unit {
    padding: clamp(0.8rem, 2vw, 1.2rem);
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 70px;
    transition: transform 0.3s var(--transition-smooth);
}

.countdown-unit:hover {
    transform: translateY(-5px);
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.3rem;
    transition: all 0.6s var(--transition-smooth);
    will-change: color, text-shadow;
}

.countdown-unit:nth-child(1) .countdown-number {
    animation: pulseGlow 3s ease-in-out infinite;
}

.countdown-unit:nth-child(2) .countdown-number {
    animation: pulseGlow 3s ease-in-out 0.5s infinite;
}

.countdown-unit:nth-child(3) .countdown-number {
    animation: pulseGlow 3s ease-in-out 1s infinite;
}

.countdown-unit:nth-child(4) .countdown-number {
    animation: pulseGlow 3s ease-in-out 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
    50% {
        color: #d0d0d0;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
}

.countdown-label {
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    font-weight: 600;
    text-transform: none;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.location {
    margin: clamp(2rem, 8vh, 4rem) 0;
    text-align: center;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.6s both;
}

.location-locked {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 2.5rem);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vh, 2.5rem);
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--transition-smooth);
}

.location-locked:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.location-locked-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #c0c0c0;
    text-transform: none;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.location-lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(200px, 40vw, 320px);
    height: clamp(110px, 25vw, 170px);
    overflow: hidden;
    animation: floatBounce 4s ease-in-out infinite;
    position: relative;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.crt-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 15px rgba(200, 200, 200, 0.2));
    transform: scaleX(-1);
}

.location-locked-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-weight: 400;
    max-width: 500px;
    line-height: 1.5;
}

.location-revealed h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: 0.05em;
}

.location-revealed p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    font-weight: 400;
}

.gmap-embed {
    width: 100%;
    height: clamp(280px, 50vh, 450px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(1) invert(1);
    transition: filter 0.3s var(--transition-smooth);
}

.gmap-embed:hover {
    filter: grayscale(0.8) invert(1);
}

.poster-section {
    margin: clamp(2rem, 8vh, 4rem) 0;
    text-align: center;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.8s both;
}

.poster-container {
    cursor: pointer;
    display: inline-block;
    transition: all 0.4s var(--transition-smooth);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.poster-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.1), rgba(0, 217, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    pointer-events: none;
}

.poster-container:hover::before {
    opacity: 1;
}

.poster-container:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 70px rgba(255, 0, 110, 0.25), 0 25px 70px rgba(0, 217, 255, 0.2);
    border-color: rgba(0, 217, 255, 0.6);
}

.poster-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.poster-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--transition-smooth), visibility 0.4s var(--transition-smooth);
}

.poster-modal.show {
    opacity: 1;
    visibility: visible;
}

.poster-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    animation: zoomInModal 0.5s var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 80px rgba(255, 0, 110, 0.3),
        0 0 120px rgba(0, 217, 255, 0.25);
    border: 3px solid rgba(0, 217, 255, 0.4);
}

@keyframes zoomInModal {
    from { 
        transform: scale(0.5);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.poster-modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    backdrop-filter: blur(15px);
    font-family: var(--font-body);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.lineup {
    margin: clamp(2rem, 8vh, 4rem) 0;
    animation: fadeInUp 0.8s var(--transition-smooth) 1s both;
}

.lineup h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: none;
    letter-spacing: 0.06em;
}

.lineup-hint {
    text-align: center;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.06em;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    background: var(--gradient-flow);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s var(--transition-smooth) infinite;
    background-size: 200% 200%;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.2rem, 3vw, 2rem);
}

.artist-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    transform: scaleX(0);
    transition: transform 0.4s var(--transition-smooth);
}

.artist-card:hover,
.artist-card:focus-within {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.artist-card:hover::before,
.artist-card:focus-within::before {
    transform: scaleX(1);
}

.artist-card-front {
    transition: opacity 0.4s var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.artist-card-back {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 1.8rem;
    padding-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    overflow-y: auto;
}

.artist-card:hover .artist-card-front,
.artist-card:focus-within .artist-card-front {
    opacity: 0;
}

.artist-card:hover .artist-card-back,
.artist-card:focus-within .artist-card-back {
    opacity: 1;
}

.artist-card-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.05em;
    color: #c0c0c0;
    position: absolute;
    top: 1.2rem;
    left: 1.8rem;
    right: 1.8rem;
    z-index: 3;
}

.artist-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.artist-type {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: #b0b0b0;
    padding: 0.3em 0.8em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--transition-smooth);
}

.artist-card:hover .artist-type,
.artist-card:focus-within .artist-type {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.artist-genre {
    font-size: 0.95rem;
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}

.artist-bio {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.7;
    letter-spacing: 0.02em;
    font-weight: 400;
}

footer {
    text-align: center;
    padding: 2.5rem 1rem;
    margin-top: clamp(2rem, 8vh, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    font-weight: 400;
    line-height: 1.8;
}

.footer-quote {
    font-style: italic;
    color: #909090;
    margin-top: 0.8rem;
}

@media (max-width: 768px) {
    header {
        justify-content: center;
    }

    .logo-area {
        margin-right: 0;
    }

    .hero-title {
        letter-spacing: 0.04em;
    }

    .lineup-grid {
        grid-template-columns: 1fr;
    }

    .close-modal {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        top: 15px;
        right: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}