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

body {
    font-family: 'Fredoka', sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Header styles */
.header {
    margin-bottom: 60px;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 10px;
}

/* Main content */
.main-content {
    margin-bottom: 40px;
}

.coming-soon-box {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Coming soon text */
.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Features section */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
}

/* Notify section */
.notify-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.notify-text {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-message {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 20px;
}

.form-message.success {
    color: #38a169;
}

.form-message.error {
    color: #e53e3e;
}

.notify-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.notify-form input {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Fredoka', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
    min-width: 250px;
}

.notify-form input:focus {
    border-color: #667eea;
}

.notify-form button {
    padding: 12px 30px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Fredoka', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
}

.notify-form button:hover {
    background: #5568d3;
}

.notify-form button:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

/* Footer */
.footer {
    margin-top: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    font-size: 1.3rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.copyright {
    color: #a0aec0;
    font-size: 0.85rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-box {
        padding: 40px 30px;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .notify-form input,
    .notify-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
    
    .coming-soon-box {
        padding: 30px 20px;
    }
    
    .container {
        padding: 15px;
    }
}
