/* Mimeer.ai Dark Theme - Inspired by OpenClaw */
:root {
    --dark-bg: #0a0f1a;
    --darker-bg: #050810;
    --light-red: #FE6F74;
    --light-red-glow: rgba(254, 111, 116, 0.3);
    --text-primary: #f0f4ff;
    --text-secondary: #8892b0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Subtle animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(254, 111, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
}

.hero {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Logo */
.logo h1 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -1px;
    text-shadow: 0 0 30px var(--light-red-glow);
    animation: fadeInUp 1s ease-out;
}

/* Beta Badge */
.beta-badge {
    display: inline-block;
    background: rgba(254, 111, 116, 0.1);
    border: 1px solid rgba(254, 111, 116, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-text {
    color: var(--light-red);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Coming Soon */
.coming-soon {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
    font-size: 0.875rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow effect on hover */
.logo h1:hover {
    text-shadow: 0 0 50px var(--light-red-glow), 0 0 80px rgba(254, 111, 116, 0.2);
    transition: text-shadow 0.3s ease;
}

/* Signup Form */
.signup-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.signup-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(254, 111, 116, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.signup-form input[type="email"]::placeholder {
    color: var(--text-secondary);
}

.signup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--light-red);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px var(--light-red-glow);
}

.signup-form button {
    padding: 1rem 2rem;
    background: var(--light-red);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    background: #ff5a5f;
    box-shadow: 0 0 30px var(--light-red-glow);
    transform: translateY(-2px);
}

.signup-form button:active {
    transform: translateY(0);
}

.signup-form button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-message {
    font-size: 0.875rem;
    text-align: center;
    min-height: 1.5rem;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: var(--light-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 3rem;
    }

    .hero {
        gap: 2rem;
    }

    .signup-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 1rem;
    }

    main {
        padding: 2rem 0;
    }

    .coming-soon {
        font-size: 1rem;
    }

    .signup-form input[type="email"],
    .signup-form button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}
