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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #16213e 100%);
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #29abe2;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 0 15px rgba(41, 171, 226, 0.6);
}

/* Stelle animate */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars {
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 
        1px 1px #fff, 50px 100px #fff, 150px 50px #fff, 200px 180px #fff,
        300px 80px #fff, 400px 140px #fff, 500px 60px #fff, 600px 200px #fff,
        700px 120px #fff, 800px 90px #fff, 900px 170px #fff, 1000px 40px #fff,
        1100px 130px #fff, 1200px 190px #fff, 1300px 70px #fff, 1400px 150px #fff,
        50px 300px #fff, 150px 400px #fff, 250px 350px #fff, 350px 450px #fff,
        450px 320px #fff, 550px 380px #fff, 650px 420px #fff, 750px 340px #fff,
        850px 390px #fff, 950px 360px #fff, 1050px 410px #fff, 1150px 330px #fff;
}

.stars2 {
    width: 2px;
    height: 2px;
    background: transparent;
    box-shadow: 
        100px 50px #fff, 200px 150px #fff, 300px 100px #fff, 400px 200px #fff,
        500px 120px #fff, 600px 80px #fff, 700px 180px #fff, 800px 140px #fff,
        900px 60px #fff, 1000px 190px #fff, 1100px 110px #fff, 1200px 70px #fff,
        100px 350px #fff, 200px 400px #fff, 300px 320px #fff, 400px 380px #fff,
        500px 340px #fff, 600px 420px #fff, 700px 360px #fff, 800px 390px #fff;
}

.stars3 {
    width: 3px;
    height: 3px;
    background: transparent;
    box-shadow: 
        150px 80px #fff, 250px 120px #fff, 350px 160px #fff, 450px 90px #fff,
        550px 140px #fff, 650px 100px #fff, 750px 170px #fff, 850px 110px #fff,
        950px 130px #fff, 1050px 150px #fff, 1150px 80px #fff,
        150px 380px #fff, 250px 340px #fff, 350px 400px #fff, 450px 360px #fff;
}

/* Container principale */
.container {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo animato */
.logo-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    filter: drop-shadow(0 0 30px rgba(41, 171, 226, 0.6));
    animation: float 6s ease-in-out infinite;
}

#lottie-logo {
    width: 100%;
    height: 100%;
}

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

/* Titolo */
.title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 20px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #29abe2, #6dd5fa, #ffffff, #29abe2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

.title .letter {
    display: inline-block;
}

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

/* Coming Soon */
.coming-soon {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 5px;
    color: #6dd5fa;
}

.coming-soon .word {
    display: inline-block;
}

.coming-soon .dots {
    display: inline-block;
}

.coming-soon .dot {
    animation: blink 1.5s ease-in-out infinite;
}

.coming-soon .dot:nth-child(1) { animation-delay: 0s; }
.coming-soon .dot:nth-child(2) { animation-delay: 0.3s; }
.coming-soon .dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.countdown-item {
    background: rgba(41, 171, 226, 0.05);
    border: 1px solid rgba(41, 171, 226, 0.2);
    border-radius: 15px;
    padding: 30px 40px;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideUp 1s ease-out;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(41, 171, 226, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.countdown-value {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #29abe2, #6dd5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6dd5fa;
    font-weight: 600;
}

.countdown-separator {
    font-size: 3rem;
    color: #29abe2;
    font-weight: 900;
    animation: pulse-separator 2s ease-in-out infinite;
}

@keyframes pulse-separator {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Effetto glow */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 171, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .title {
        font-size: 4rem;
    }
    
    .countdown-value {
        font-size: 3rem;
    }
    
    .countdown-item {
        padding: 25px 30px;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
        letter-spacing: 10px;
    }
    
    .coming-soon {
        font-size: 1.8rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        padding: 20px 25px;
        min-width: 100px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .logo-container {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 5px;
    }
    
    .coming-soon {
        font-size: 1.3rem;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}
