/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(to bottom, #9B59B6 0%, #2D1B3D 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.coming-soon-box {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    border: 2px solid rgba(155, 89, 182, 0.1);
}

.clouds-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('clouds.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(155, 89, 182, 0.2);
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #9B59B6;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 2;
}

.app-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #6C757D;
    margin: 0;
    position: relative;
    z-index: 2;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    margin: 24px 0 0 0;
    position: relative;
    z-index: 2;
    background: rgba(155, 89, 182, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(155, 89, 182, 0.3);
}

/* SEO Content - Hidden on mobile but visible to search engines */
.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    color: #333;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    max-width: 600px;
}

.seo-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9B59B6;
    margin-bottom: 16px;
}

.seo-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9B59B6;
    margin: 20px 0 12px 0;
}

.seo-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6C757D;
    margin-bottom: 16px;
}

.seo-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.seo-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: #6C757D;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .coming-soon-box {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
} 