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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #6161FF 0%, #5040FF 50%, #8F5AFF 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.hero {
    text-align: center;
    background: rgba(123, 110, 255, 0.9);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(143, 90, 255, 0.3);
}

.logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.coming-soon h2 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #E0E0FF;
    margin-bottom: 40px;
    line-height: 1.5;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    padding: 15px;
    background: rgba(143, 90, 255, 0.3);
    border-radius: 18px;
    border: 2px solid rgba(143, 90, 255, 0.5);
}

.pulse {
    width: 12px;
    height: 12px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.status-indicator span {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
}

.features-preview {
    margin-bottom: 40px;
}

.features-preview h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
}

.features-list li {
    background: rgba(143, 90, 255, 0.2);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 1rem;
    color: #FFFFFF;
    border-left: 3px solid #FFD700;
}

.cta-section {
    margin-top: 30px;
}

.launch-text {
    font-size: 1.1rem;
    color: #E0E0FF;
    margin-bottom: 10px;
}

.download-text {
    font-size: 1rem;
    color: #E0E0FF;
    margin-bottom: 25px;
    font-style: italic;
}

.highlight {
    color: #FFD700;
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 10px;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FF9500);
    color: #6161FF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFEA70, #FFD700);
}

footer {
    position: absolute;
    bottom: 20px;
    color: rgba(224, 224, 255, 0.8);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 40px 30px;
        margin: 20px;
        border-radius: 18px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 20px;
        border-radius: 14px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 1.3rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
