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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.coming-soon {
    text-align: center;
    margin-bottom: 40px;
}

.hero-image {
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 300px;
    object-fit: cover;
}

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

.tagline {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.countdown-text {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signup-section {
    margin-top: 40px;
}

.signup-section h3 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.signup-section p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

#interest-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.disclaimer {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.disclaimer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    margin: 0 0 5px 0;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.disclaimer a {
    color: #667eea;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

footer {
    text-align: center;
    margin-top: 30px;
    color: white;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .logo {
        font-size: 2rem;
    }
    
    .hero-image img {
        max-height: 200px;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    main {
        padding: 30px 20px;
    }
    
    .form-group input {
        padding: 12px;
    }
}