:root {
    --primary-bg: #0a0a0a;
    --primary-text: #ffffff;
    --secondary-text: #d1d1d1;
    --pink: #ff007f;
    --purple: #8a2be2;
    --gold: #ffd700;
    --neon-blue: #00f3ff;
    --brand-gradient: linear-gradient(135deg, #ff007f 0%, #8a2be2 50%, #ffd700 100%);
    --dark-overlay: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), #0a0a0a);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul,
ol {
    list-style: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .break-mobile {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all;
    }
}

/* ===== header_section ===== */
.js-mobile-menu.open {
    display: block;
}

/* ===== hero_banner ===== */
#hero {
    background-color: var(--primary-bg)
}

/* ===== announcement_info ===== */
.js-reveal {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.translate-y-10 {
    transform: translateY(2.5rem);
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.translate-y-0 {
    transform: translateY(0);
}

/* ===== schedule_grid ===== */
.js-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.js-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ===== experience_details ===== */
#experience {
    background-image: radial-gradient(circle at top right, rgba(138, 43, 226, 0.1), transparent), radial-gradient(circle at bottom left, rgba(255, 0, 127, 0.1), transparent);
}

.experience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.experience-card:hover {
    border-color: var(--pink);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.15);
    transform: translateY(-10px);
}

.experience-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover::after {
    opacity: 1;
}

.icon-box {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== vip_cards ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ===== gallery_masonry ===== */
section#gallery {
    background-color: var(--primary-bg);
}

.js-gallery-item {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ===== setlist_visual ===== */
.audio-bar {
    transition: height 0.3s ease-in-out;
}

.js-audio-container:hover .audio-bar {
    filter: brightness(1.2);
}

/* ===== fan_testimonials ===== */
.js-fan-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.js-fan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ===== event_timer ===== */
#countdown {
    position: relative;
    width: 100%;
}

.js-days,
.js-hours,
.js-minutes,
.js-seconds {
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* ===== editorial_text ===== */
#unique-value {
    width: 100%;
}

.js-reveal {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== faq_accordion ===== */
.faq-section {
    width: 100%
}

.js-faq-icon {
    transition: transform 0.3s ease
}

/* ===== final_cta ===== */
#final-call {
    width: 100%;
}

.js-reveal-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-visible-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* ===== footer ===== */
#footer {
    width: 100%
}

.footer-map-container iframe {
    filter: grayscale(1) invert(0.9) contrast(1.1)
}