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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.logo {
    margin-bottom: 2rem;
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(255,255,255,0.2));
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    color: #ffffff;
}

.email-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.15);
}

.submit-btn {
    padding: 18px 40px;
    background: rgba(255,255,255,0.95);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
    background: white;
}

.coming-soon {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-top: 1rem;
}

.footer {
    padding: 30px 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.footer p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo-image {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .email-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .email-input,
    .submit-btn {
        width: 100%;
        min-width: unset;
    }
}
