/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Container principale */
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.content {
    max-width: 600px;
    padding: 2rem;
}

/* Header */
.header {
    margin-bottom: 3rem;
}

.stay-tuned {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #888888;
    margin: 0;
}

/* Titolo principale */
.main-title {
    margin-bottom: 3rem;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-title h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    
    padding-top: -30px;
}

.star-icon {
    font-size: 1.8rem;
    position: absolute;
    right: -0.3rem;
    top: -0.5rem;
    transform: translateY(-50%);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateY(-50%) scale(1.1); }
}

.main-title h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.arrow {
    display: inline-block;
    font-size: 3rem;
    margin-left: 0.5rem;
}

.rocket {
    font-size: 3.5rem;
    margin: 0 0.5rem;
}

/* Descrizione */
.description {
    margin-bottom: 3rem;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #333333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.description:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border-color: #444444;
}

.description p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    position: relative;
}



/* CTA Section */
.cta-section {
    margin-bottom: 3rem;
}

.notify-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 25px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.notify-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.email-icon {
    font-size: 1rem;
}

/* Footer */
.footer {
    margin-top: 2rem;
}

.more-link {
    color: #888888;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title h1,
    .main-title h2 {
        font-size: 2.5rem;
    }
    
    .star-icon {
        font-size: 1.5rem;
        right: -0.25rem;
        top: -0.4rem;
    }
    
    .arrow {
        font-size: 2rem;
    }
    
    .rocket {
        font-size: 2.2rem;
    }
    
    .description {
        padding: 1.5rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .description p::before {
        left: -2rem;
        font-size: 1.1rem;
    }
    
    .content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title h1,
    .main-title h2 {
        font-size: 2rem;
    }
    
    .star-icon {
        font-size: 1.2rem;
        right: -0.2rem;
        top: -0.3rem;
    }
    
    .arrow {
        font-size: 1.5rem;
    }
    
    .rocket {
        font-size: 1.8rem;
        margin: 0 0.3rem;
    }
    
    .description {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .description p {
        font-size: 0.9rem;
        br {
            display: none;
        }
    }
    
    .description p::before {
        left: -1.5rem;
        font-size: 1rem;
    }
    
    .notify-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}