.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated background particles */
.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-height: 80px;
}

.countdown-section {
    margin: 3rem 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    min-width: 100px;
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.early-access-form {
    max-width: 500px;
    margin: 2rem auto;
}

.form-control {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-signup {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
    background: #ff6b6b;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #ff5252;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.features-preview {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.alert {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    backdrop-filter: blur(10px);
    margin-top: 1rem;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
        min-width: 70px;
        padding: 0.75rem;
    }
}
