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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Enable scrolling on mobile/tablet */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        height: auto;
    }
}

/* ==================== BODY & BASE - FIXED 16:9 NO SCROLL ==================== */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a4d68 0%, #05668d 50%, #028090 100%);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    cursor: none;
}

/* Disable animations during load */
body.loading * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition: none !important;
}

/* ==================== PARTICLES CANVAS ==================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    will-change: transform;
}

/* Hide particles on low-end devices or during loading */
body.loading #particles-canvas {
    display: none;
}

@media (max-width: 768px) {
    #particles-canvas {
        opacity: 0.4; /* Less visible on mobile */
    }
}

/* ==================== MOUSE SPOTLIGHT ==================== */
.mouse-spotlight {
    position: fixed;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
    will-change: transform;
}

body.loading .mouse-spotlight {
    display: none;
}

/* ==================== CURSOR TRAIL ==================== */
.cursor-trail {
    position: fixed;
    width: 1.5vh;
    height: 1.5vh;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

body.loading .cursor-trail {
    display: none;
}

/* ==================== ANIMATED BACKGROUND ==================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 180, 216, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

/* Only animate after loading */
body:not(.loading)::before {
    animation: pulse-bg 10s ease-in-out infinite;
    will-change: opacity;
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ==================== MAIN WRAPPER - TWO COLUMNS OPTIMIZED ==================== */
.main-wrapper {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 45fr 55fr;
    align-items: center;
    padding: 0 3vw;
    z-index: 10;
    position: relative;
    gap: 2vw;
}

/* ==================== LEFT COLUMN ==================== */
.left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5vh;
    padding: 3vh 0;
    max-width: 100%;
}

/* ==================== BADGES STACK (TOP LEFT) ==================== */
.badges-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
    width: auto;
    animation: slideInFromLeft 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stand-badge-compact {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    padding: 1.2vh 2vw;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 180, 216, 0.1) 100%);
    backdrop-filter: blur(1.5vh);
    border: 0.25vh solid rgba(0, 255, 255, 0.5);
    border-radius: 3vh;
    box-shadow: 
        0 1vh 3vh rgba(0, 0, 0, 0.4),
        0 0 4vh rgba(0, 255, 255, 0.3),
        inset 0 0 2vh rgba(0, 180, 216, 0.2);
    transition: all 0.3s ease;
}

.stand-badge-compact:hover {
    transform: translateX(0.5vw);
    border-color: rgba(0, 255, 255, 0.7);
    box-shadow: 
        0 1.5vh 4vh rgba(0, 0, 0, 0.5),
        0 0 5vh rgba(0, 255, 255, 0.5);
}

.location-icon-compact {
    flex-shrink: 0;
    color: #00ffff;
    filter: drop-shadow(0 0 1vh rgba(0, 255, 255, 0.9));
    animation: icon-pulse-compact 2s ease-in-out infinite;
}

@keyframes icon-pulse-compact {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 1vh rgba(0, 255, 255, 0.9));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 1.5vh rgba(0, 255, 255, 1));
    }
}

.stand-badge-text {
    font-size: 1vw;
    font-weight: 700;
    color: white;
    text-shadow: 
        0 0.2vh 0.5vh rgba(0, 0, 0, 0.9),
        0 0 1.5vh rgba(0, 180, 216, 0.5);
    white-space: nowrap;
}

.stand-badge-text strong {
    color: #00ffff;
    font-weight: 900;
    text-shadow: 
        0 0.2vh 0.5vh rgba(0, 0, 0, 1),
        0 0 2vh rgba(0, 255, 255, 0.9);
}

/* ==================== LOGO SECTION - INLINE WITH CONTENT ==================== */
.logo-section {
    display: flex;
    align-items: center;
    gap: 2vw;
    margin-bottom: 2vh;
    animation: slideInFromLeft 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-10vw) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.main-logo {
    height: 8vh;
    width: auto;
    filter: drop-shadow(0 0 2vh rgba(0, 180, 216, 0.8));
    animation: float 3s ease-in-out infinite;
}

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

.impact-badge-inline {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B00 100%);
    padding: 1.2vh 2vw;
    border-radius: 3vh;
    font-weight: 800;
    font-size: 1vw;
    letter-spacing: 0.08vw;
    color: #000;
    box-shadow: 
        0 0 3vh rgba(255, 215, 0, 0.8),
        0 0.6vh 2vh rgba(255, 215, 0, 0.6),
        inset 0 -0.3vh 0.6vh rgba(0, 0, 0, 0.2);
    animation: pulse-gold 2s ease-in-out infinite;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 
            0 0 3vh rgba(255, 215, 0, 0.8),
            0 0.6vh 2vh rgba(255, 215, 0, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 5vh rgba(255, 215, 0, 1),
            0 1vh 3vh rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
}

.star-icon {
    width: 1.8vh;
    height: 1.8vh;
    animation: spin-star 4s linear infinite;
    filter: drop-shadow(0 0 0.5vh rgba(255, 215, 0, 0.8));
}

@keyframes spin-star {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    text-align: left;
    animation: zoomIn 1s ease-out 0.5s both;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8vh;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(5vh);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8vw;
    background: rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(0.8vh);
    border: 0.25vh solid rgba(0, 255, 255, 0.5);
    padding: 1vh 2.2vw;
    border-radius: 4vh;
    color: white;
    font-weight: 800;
    font-size: 1vw;
    letter-spacing: 0.12vw;
    text-shadow: 
        0 0.3vh 0.7vh rgba(0, 0, 0, 0.9),
        0 0 2vh rgba(0, 255, 255, 0.8);
    box-shadow: 
        0 1vh 3.5vh rgba(0, 0, 0, 0.4),
        0 0 5vh rgba(0, 255, 255, 0.5),
        inset 0 0 2vh rgba(0, 180, 216, 0.3),
        inset 0 0.2vh 0.5vh rgba(255, 255, 255, 0.2);
    animation: pulse-neon 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

@keyframes pulse-neon {
    0%, 100% {
        box-shadow: 
            0 1vh 3.5vh rgba(0, 0, 0, 0.4),
            0 0 5vh rgba(0, 255, 255, 0.5);
    }
    50% {
        box-shadow: 
            0 1.5vh 4.5vh rgba(0, 0, 0, 0.5),
            0 0 7vh rgba(0, 255, 255, 0.7);
    }
}

/* Compositing hint for animations */
@keyframes pulse-neon, pulse-cta, rotate-gradient, pulse-bg {
    will-change: box-shadow, transform, opacity, background-position;
}

.event-year {
    font-weight: 900;
    font-size: 1.3vw;
    text-shadow: 
        0 0.2vh 0.6vh rgba(0, 0, 0, 1),
        0 0 2vh rgba(0, 255, 255, 1);
}

.event-divider {
    opacity: 0.6;
    font-size: 1.3vw;
}

.event-name {
    font-weight: 800;
    text-shadow: 
        0 0.2vh 0.6vh rgba(0, 0, 0, 1),
        0 0 2vh rgba(0, 255, 255, 1);
}

/* ==================== HERO TITLE ==================== */
.hero-title {
    font-size: 4.8vw;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.1vw;
    text-shadow: 
        0 0.4vh 1vh rgba(0, 0, 0, 0.8),
        0 0 2vh rgba(0, 180, 216, 0.4);
}

.word-animate {
    display: inline-block;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.word-animate:nth-child(1) { animation-delay: 0.7s; }
.word-animate:nth-child(2) { animation-delay: 0.85s; }
.word-animate:nth-child(3) { animation-delay: 1s; }

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(-5vh);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.glowing-text {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    display: inline-block;
    animation: glow-pulse-white 2s ease-in-out infinite, bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.15s both;
    text-shadow: 
        0 0.4vh 1vh rgba(0, 0, 0, 0.8),
        0 0 2vh rgba(0, 255, 255, 0.8),
        0 0 4vh rgba(0, 255, 255, 0.6),
        0 0 1vh rgba(255, 255, 255, 0.9),
        inset 0 0 1vh rgba(255, 255, 255, 0.3);
    filter: 
        drop-shadow(0 0.3vh 0.8vh rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 3vh rgba(0, 255, 255, 0.9))
        drop-shadow(0 0 5vh rgba(0, 255, 255, 0.5));
    -webkit-backdrop-filter: blur(0.5vh);
    backdrop-filter: blur(0.5vh);
}

@keyframes glow-pulse-white {
    0%, 100% {
        filter: 
            drop-shadow(0 0.3vh 0.8vh rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 3vh rgba(0, 255, 255, 0.9))
            drop-shadow(0 0 5vh rgba(0, 255, 255, 0.5));
        text-shadow: 
            0 0.4vh 1vh rgba(0, 0, 0, 0.8),
            0 0 2vh rgba(0, 255, 255, 0.8),
            0 0 4vh rgba(0, 255, 255, 0.6),
            0 0 1vh rgba(255, 255, 255, 0.9);
    }
    50% {
        filter: 
            drop-shadow(0 0.4vh 1vh rgba(0, 0, 0, 1))
            drop-shadow(0 0 4vh rgba(0, 255, 255, 1))
            drop-shadow(0 0 6vh rgba(0, 255, 255, 0.7));
        text-shadow: 
            0 0.5vh 1.2vh rgba(0, 0, 0, 0.9),
            0 0 3vh rgba(0, 255, 255, 1),
            0 0 5vh rgba(0, 255, 255, 0.8),
            0 0 1.5vh rgba(255, 255, 255, 1);
    }
}

.glitch {
    position: relative;
}

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

.glitch.glitching::before {
    animation: glitch-1 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    text-shadow: 
        -0.3vw 0 rgba(0, 255, 255, 0.8),
        0 0 2vh rgba(0, 255, 255, 0.6);
}

.glitch.glitching::after {
    animation: glitch-2 0.3s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    text-shadow: 
        0.3vw 0 rgba(0, 180, 255, 0.8),
        0 0 2vh rgba(0, 180, 255, 0.6);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(-0.4vw, 0.2vh); }
    66% { transform: translate(0.4vw, -0.2vh); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    33% { transform: translate(0.4vw, -0.2vh); }
    66% { transform: translate(-0.4vw, 0.2vh); }
}

/* ==================== HERO SUBTITLE ==================== */
.hero-subtitle {
    font-size: 1.3vw;
    color: rgba(255, 255, 255, 1);
    font-weight: 500;
    max-width: 100%;
    text-shadow: 
        0 0.3vh 0.7vh rgba(0, 0, 0, 0.8),
        0 0 2vh rgba(0, 180, 216, 0.5);
    animation: fadeInUp 1s ease-out 1.5s both;
    line-height: 1.4;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(3vh);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== STATS COUNTER ==================== */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
    width: 100%;
    animation: fadeInUp 1s ease-out 2s both;
}

.stat-card {
    background: rgba(0, 180, 216, 0.15);
    backdrop-filter: blur(0.8vh);
    border: 0.25vh solid rgba(0, 255, 255, 0.4);
    border-radius: 1.8vh;
    padding: 2vh 1.2vw;
    text-align: center;
    box-shadow: 
        0 1.5vh 4vh rgba(0, 0, 0, 0.3),
        0 0 5vh rgba(0, 255, 255, 0.3),
        inset 0 0 3vh rgba(0, 180, 216, 0.15),
        inset 0 0.2vh 1vh rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.stat-card:hover::before {
    width: 40vw;
    height: 40vw;
}

.stat-card:hover {
    transform: translateY(-1vh) scale(1.05);
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 
        0 2vh 5vh rgba(0, 0, 0, 0.3),
        0 0 6vh rgba(0, 255, 255, 0.6),
        inset 0 0 4vh rgba(0, 180, 216, 0.2);
}

.stat-number {
    font-size: 4.8vh;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 0.3vh;
    text-shadow: 
        0 0.3vh 0.8vh rgba(0, 0, 0, 0.9),
        0 0 3vh rgba(0, 255, 255, 0.9);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.stat-suffix {
    font-size: 3.5vh;
    font-weight: 800;
    color: #00e5ff;
    display: inline;
    text-shadow: 
        0 0.2vh 0.6vh rgba(0, 0, 0, 0.9),
        0 0 2.5vh rgba(0, 255, 255, 0.8);
}

.stat-label {
    font-size: 0.9vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 0.08vw;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 0.2vh 0.5vh rgba(0, 0, 0, 0.8),
        0 0 1.8vh rgba(0, 180, 216, 0.5);
    line-height: 1.3;
}

/* ==================== DATE BADGE COMPACT ==================== */
.date-badge-compact {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    padding: 1.2vh 2vw;
    background: rgba(0, 180, 216, 0.12);
    backdrop-filter: blur(0.8vh);
    border: 0.2vh solid rgba(0, 255, 255, 0.4);
    border-radius: 3vh;
    box-shadow: 
        0 0.8vh 2.5vh rgba(0, 0, 0, 0.3),
        0 0 3vh rgba(0, 255, 255, 0.25),
        inset 0 0 1.5vh rgba(0, 180, 216, 0.15);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 2s both;
    width: fit-content;
}

.date-badge-compact:hover {
    transform: translateX(0.5vw);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 1vh 3vh rgba(0, 0, 0, 0.4),
        0 0 4vh rgba(0, 255, 255, 0.4);
}

.calendar-icon-compact {
    flex-shrink: 0;
    color: #00ffff;
    filter: drop-shadow(0 0 1vh rgba(0, 255, 255, 0.8));
    animation: icon-pulse-compact 2.5s ease-in-out infinite;
}

.date-badge-text {
    font-size: 1vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 0.2vh 0.5vh rgba(0, 0, 0, 0.9),
        0 0 1.5vh rgba(0, 180, 216, 0.5);
    white-space: nowrap;
}

/* ==================== OLD STAND INFO BOX - REMOVED ==================== */
.stand-info-box {
    display: none;
}

/* ==================== OLD STYLES - HIDDEN ==================== */
.stand-location-large,
.stand-date-large {
    display: none !important;
}

/* ==================== LOCATION LARGE (LEGACY) ==================== */
.stand-location-large-old {
    display: flex;
    align-items: center;
    gap: 1.2vw;
    padding: 2vh 2.5vw;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 180, 216, 0.1) 100%);
    backdrop-filter: blur(2vh);
    border: 0.3vh solid rgba(0, 255, 255, 0.5);
    border-radius: 2vh;
    box-shadow: 
        0 1.5vh 4vh rgba(0, 0, 0, 0.4),
        0 0 6vh rgba(0, 255, 255, 0.4),
        inset 0 0 3vh rgba(0, 180, 216, 0.2),
        inset 0 0.3vh 1vh rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stand-location-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-glow 4s linear infinite;
}

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

.stand-location-large:hover {
    transform: translateY(-0.8vh) scale(1.02);
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 
        0 2vh 6vh rgba(0, 0, 0, 0.5),
        0 0 8vh rgba(0, 255, 255, 0.6),
        inset 0 0 4vh rgba(0, 180, 216, 0.3);
}

.location-icon-large {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #00ffff;
    filter: drop-shadow(0 0 1.5vh rgba(0, 255, 255, 1));
    animation: icon-pulse-large 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes icon-pulse-large {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 1.5vh rgba(0, 255, 255, 1));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 2.5vh rgba(0, 255, 255, 1));
    }
}

.location-text {
    display: flex;
    flex-direction: column;
    gap: 0.5vh;
    z-index: 1;
}

.location-main {
    font-size: 1.5vw;
    font-weight: 900;
    color: #00ffff;
    line-height: 1.15;
    text-shadow: 
        0 0.4vh 1vh rgba(0, 0, 0, 1),
        0 0 3vh rgba(0, 255, 255, 1),
        0 0 1.5vh rgba(0, 255, 255, 0.8);
    letter-spacing: 0.06vw;
    text-transform: uppercase;
}

.location-sub {
    font-size: 1.15vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 0.3vh 0.7vh rgba(0, 0, 0, 0.9),
        0 0 2vh rgba(0, 180, 216, 0.6);
    letter-spacing: 0.08vw;
}

/* ==================== DATE LARGE ==================== */
.stand-date-large {
    display: flex;
    align-items: center;
    gap: 1.2vw;
    padding: 1.5vh 2.5vw;
    background: rgba(0, 180, 216, 0.12);
    backdrop-filter: blur(1.8vh);
    border: 0.25vh solid rgba(0, 255, 255, 0.4);
    border-radius: 1.8vh;
    box-shadow: 
        0 1vh 3.5vh rgba(0, 0, 0, 0.35),
        0 0 5vh rgba(0, 255, 255, 0.3),
        inset 0 0 2.5vh rgba(0, 180, 216, 0.15),
        inset 0 0.2vh 0.8vh rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.stand-date-large:hover {
    transform: translateY(-0.5vh);
    border-color: rgba(0, 255, 255, 0.6);
    background: rgba(0, 180, 216, 0.18);
    box-shadow: 
        0 1.5vh 4.5vh rgba(0, 0, 0, 0.4),
        0 0 6vh rgba(0, 255, 255, 0.5);
}

.calendar-icon-large {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #00ffff;
    filter: drop-shadow(0 0 1.2vh rgba(0, 255, 255, 0.9));
    animation: icon-pulse-medium 2.5s ease-in-out infinite;
}

@keyframes icon-pulse-medium {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 1.2vh rgba(0, 255, 255, 0.9));
    }
    50% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 2vh rgba(0, 255, 255, 1));
    }
}

.date-text-large {
    font-size: 1.15vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 0.3vh 0.7vh rgba(0, 0, 0, 0.9),
        0 0 2vh rgba(0, 180, 216, 0.6);
    letter-spacing: 0.04vw;
}

/* ==================== MEGA CTA BUTTON ==================== */
.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8vw;
    padding: 1.8vh 3.5vw;
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    border: 0.3vh solid rgba(0, 255, 255, 0.6);
    border-radius: 4vh;
    color: white;
    font-size: 1.2vw;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12vw;
    position: relative;
    overflow: hidden;
    text-shadow: 
        0 0.3vh 0.8vh rgba(0, 0, 0, 0.9),
        0 0 2vh rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 2.5vh 7vh rgba(0, 180, 216, 0.7),
        0 0 6vh rgba(0, 255, 255, 0.5),
        inset 0 0 3vh rgba(255, 255, 255, 0.2),
        inset 0 0.3vh 1vh rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-cta 2s ease-in-out infinite, fadeInUp 1s ease-out 1.8s both;
}

@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 2.5vh 7vh rgba(0, 180, 216, 0.7),
            0 0 6vh rgba(0, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 3vh 9vh rgba(0, 180, 216, 0.9),
            0 0 8vh rgba(0, 255, 255, 0.7);
    }
}

.mega-cta:hover {
    transform: scale(1.1) translateY(-0.5vh);
    box-shadow: 
        0 3vh 10vh rgba(0, 180, 216, 1),
        0 0 10vh rgba(0, 255, 255, 0.8),
        inset 0 0 5vh rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 1);
}

.cta-bg-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-expand 2s ease-out infinite;
}

@keyframes pulse-expand {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1vw;
}

.cta-icon {
    width: 2.5vh;
    height: 2.5vh;
    animation: arrow-move 1.5s ease-in-out infinite;
}

@keyframes arrow-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(0.8vw); }
}

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

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

/* ==================== RIGHT COLUMN - VIDEO ENLARGED ==================== */
.right-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 50vw;
    border-radius: 2.5vh;
    overflow: hidden;
    box-shadow: 
        0 3vh 8vh rgba(0, 0, 0, 0.5),
        0 0 0 0.3vh rgba(0, 255, 255, 0.2),
        0 0 6vh rgba(0, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    animation: fadeInRight 1s ease-out 0.8s both;
    will-change: transform;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(10vw) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.video-glow-ring {
    position: absolute;
    top: -0.5vh;
    left: -0.5vh;
    right: -0.5vh;
    bottom: -0.5vh;
    background: linear-gradient(135deg, #00ffff, #00b4d8, #0096c7, #00ffff);
    background-size: 400% 400%;
    border-radius: 3vh;
    z-index: -1;
    opacity: 0;
    animation: rotate-gradient 4s linear infinite;
    transition: opacity 0.5s ease;
}

@keyframes rotate-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-wrapper:hover .video-glow-ring {
    opacity: 1;
}

.video-wrapper:hover {
    transform: scale(1.05) translateY(-1vh);
    box-shadow: 
        0 4vh 12vh rgba(0, 0, 0, 0.6),
        0 0 0 0.3vh rgba(0, 255, 255, 0.5),
        0 0 10vh rgba(0, 255, 255, 0.8);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.5s ease;
    border: 0.3vh solid transparent;
}

.video-wrapper:hover .video-overlay {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-color: rgba(0, 255, 255, 0.5);
}

/* ==================== CLICK HINT ==================== */
.click-hint {
    position: absolute;
    bottom: 3vh;
    right: 3vw;
    display: flex;
    align-items: center;
    gap: 1vw;
    background: rgba(0, 255, 255, 0.95);
    padding: 1.5vh 2.5vw;
    border-radius: 5vh;
    color: #000;
    font-size: 1vw;
    font-weight: 700;
    opacity: 0;
    transform: translateX(3vw);
    transition: all 0.5s ease;
    pointer-events: none;
    box-shadow: 0 1vh 3vh rgba(0, 255, 255, 0.6);
    border: 0.2vh solid rgba(255, 255, 255, 0.3);
}

.click-hint.vibrate {
    animation: vibrate 0.3s ease infinite;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-0.3vw); }
    75% { transform: translateX(0.3vw); }
}

.video-wrapper:hover .click-hint {
    opacity: 1;
    transform: translateX(0);
}

.click-hint svg {
    animation: pulse-arrow 1.5s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(0.6vw) scale(1.2); }
}

/* ==================== FOOTER - MINIMAL ==================== */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2vh 4vw;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.5vh);
    border-top: 0.2vh solid rgba(0, 255, 255, 0.2);
    z-index: 100;
    box-shadow: 0 -1vh 3vh rgba(0, 255, 255, 0.1);
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.footer-text {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-shadow: 0 0 1.5vh rgba(0, 180, 216, 0.5);
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    padding: 1.2vh 2.5vw;
    background: rgba(0, 255, 255, 0.15);
    border: 0.2vh solid rgba(0, 255, 255, 0.4);
    border-radius: 4vh;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95vw;
    transition: all 0.4s ease;
    box-shadow: 0 0.6vh 2vh rgba(0, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.8);
    transform: translateY(-0.5vh) scale(1.05);
    box-shadow: 0 1.5vh 4vh rgba(0, 255, 255, 0.5);
}

/* ==================== BG CIRCLES ==================== */
.bg-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    animation: float-circles 25s ease-in-out infinite;
    filter: blur(3vh);
}

.circle-1 {
    width: 40vw;
    height: 40vw;
    top: -15vh;
    left: -15vw;
    animation-delay: 0s;
}

.circle-2 {
    width: 32vw;
    height: 32vw;
    bottom: -10vh;
    right: -10vw;
    animation-delay: -10s;
}

.circle-3 {
    width: 28vw;
    height: 28vw;
    top: 40%;
    right: 5%;
    animation-delay: -20s;
}

@keyframes float-circles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(4vw, -4vh) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-2.5vw, 2.5vh) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(3vw, 1.5vh) scale(1.1);
        opacity: 0.7;
    }
}

/* ==================== PARTY MODE (Easter Egg) ==================== */
body.party-mode {
    animation: rainbow-bg 0.5s linear infinite;
}

@keyframes rainbow-bg {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* ==================== MAGNETIC ELEMENTS ==================== */
.magnetic-element {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ==================== RESPONSIVE - TABLET & MOBILE ==================== */

/* ==================== TABLET (1024px and below) ==================== */
@media (max-width: 1024px) {
    body {
        cursor: auto;
        overflow-y: auto;
        height: auto;
        position: relative !important;
    }
    
    .cursor-trail,
    .mouse-spotlight {
        display: none;
    }
    
    .main-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 3vh 4vw;
        gap: 4vh;
        height: auto;
        min-height: 100vh;
    }
    
    .left-column,
    .right-column {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 8vw;
    }
    
    .hero-subtitle {
        font-size: 3.5vw;
    }
    
    .stat-number {
        font-size: 6vh;
    }
    
    .stat-label {
        font-size: 2.5vw;
    }
}

/* ==================== MOBILE (768px and below) ==================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        height: auto !important;
    }
    
    body {
        background-attachment: scroll;
        position: static !important;
        display: block !important;
    }
    
    .main-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-flow: dense;
        padding: 2vh 5vw;
        gap: 3vh;
        height: auto !important;
        min-height: 100vh;
    }
    
    /* Spacchetta TUTTI i wrapper per poter riordinare */
    .left-column,
    .right-column,
    .hero-section {
        display: contents !important; /* Rimuove i wrapper */
    }
    
    /* Ora possiamo riordinare TUTTO direttamente! */
    .badges-stack {
        order: 1;
    }
    
    .hero-title {
        order: 2;
    }
    
    .hero-subtitle {
        order: 3;
    }
    
    .video-wrapper {
        order: 4; /* VIDEO SUBITO DOPO SUBTITLE! */
        margin: 3vh 0; /* Aggiungi spazio */
    }
    
    .stats-container {
        order: 5;
    }
    
    .date-badge-compact {
        order: 6;
    }
    
    .mega-cta {
        order: 7;
    }
    
    /* Badges Stack Mobile */
    .badges-stack {
        gap: 1vh;
        width: 100%;
    }
    
    .event-badge {
        font-size: 3.5vw;
        padding: 1.5vh 5vw;
        gap: 2.5vw;
        width: 100%;
        justify-content: center;
    }
    
    .event-year,
    .event-name {
        font-size: 3.8vw;
    }
    
    .stand-badge-compact {
        padding: 1.8vh 5vw;
        gap: 2.5vw;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stand-badge-text {
        font-size: 3.5vw;
        line-height: 1.4;
    }
    
    .location-icon-compact {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        gap: 2vh;
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 11vw;
        line-height: 1.15;
        text-align: center;
        letter-spacing: -0.02em;
    }
    
    .word-animate {
        display: inline;
    }
    
    .hero-subtitle {
        font-size: 4.5vw;
        text-align: center;
        max-width: 95%;
        line-height: 1.5;
    }
    
    /* Stats Mobile - Stack Vertically */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2vh;
        width: 100%;
    }
    
    .stat-card {
        padding: 3vh 4vw;
    }
    
    .stat-number {
        font-size: 9vh;
    }
    
    .stat-suffix {
        font-size: 7vh;
    }
    
    .stat-label {
        font-size: 4vw;
        line-height: 1.4;
    }
    
    /* Date Badge Mobile */
    .date-badge-compact {
        padding: 1.8vh 5vw;
        gap: 2.5vw;
        width: 100%;
        justify-content: center;
    }
    
    .date-badge-text {
        font-size: 3.8vw;
    }
    
    .calendar-icon-compact {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    /* CTA Button Mobile */
    .mega-cta {
        font-size: 4.5vw;
        padding: 3vh 8vw;
        gap: 3vw;
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    
    .cta-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    /* Video Mobile */
    .video-wrapper {
        border-radius: 2vh;
        max-width: 100%;
    }
    
    .click-hint {
        font-size: 3vw;
        padding: 1.5vh 4vw;
        bottom: 2vh;
        right: 2vh;
    }
    
    /* Video Loader Mobile */
    .video-loader {
        padding: 3vh 8vw;
        width: 90%;
    }
    
    .loader-spinner {
        width: 5vh;
        height: 5vh;
    }
    
    .loader-text {
        font-size: 3vw;
        letter-spacing: 0.1vw;
    }
    
    .loader-progress {
        width: 70vw;
    }
    
    .loader-percentage {
        font-size: 4.5vw;
    }
    
    /* Video Play Button Mobile */
    .video-play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button span {
        font-size: 3.5vw;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2vh 5vw;
        position: relative !important;
        margin-top: 4vh;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2vh;
    }
    
    .footer-text {
        font-size: 3vw;
    }
    
    .social-link {
        font-size: 3vw;
        padding: 1.5vh 5vw;
    }
}

/* ==================== SMALL MOBILE (480px and below) ==================== */
@media (max-width: 480px) {
    .main-wrapper {
        padding: 2vh 4vw;
        gap: 2.5vh;
    }
    
    .hero-title {
        font-size: 12vw;
    }
    
    .hero-subtitle {
        font-size: 4.5vw;
    }
    
    .event-badge,
    .stand-badge-compact,
    .date-badge-compact {
        font-size: 3.5vw;
        padding: 1.2vh 4vw;
    }
    
    .stand-badge-text,
    .date-badge-text {
        font-size: 3.2vw;
    }
    
    .stat-card {
        padding: 2.5vh 4vw;
    }
    
    .stat-number {
        font-size: 7vh;
    }
    
    .stat-label {
        font-size: 4vw;
    }
    
    .mega-cta {
        font-size: 4.5vw;
        padding: 2vh 6vw;
    }
    
    .cta-icon {
        width: 6vw;
        height: 6vw;
    }
}

/* ==================== LANDSCAPE MOBILE ==================== */
@media (max-width: 896px) and (orientation: landscape) {
    .main-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 3vw;
    }
    
    .left-column {
        gap: 1.5vh;
    }
    
    .hero-title {
        font-size: 6vw;
    }
    
    .hero-subtitle {
        font-size: 2.5vw;
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5vw;
    }
    
    .stat-card {
        padding: 2vh 2vw;
    }
    
    .stat-number {
        font-size: 5vh;
    }
    
    .stat-label {
        font-size: 2vw;
    }
}
