:root {
    --bg-color: #f6f6f6;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    /* Creating a subtle texture/pattern background */
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    padding: 60px 40px;
    background: var(--bg-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    animation: fadeIn 1.5s ease-in-out;
}

.logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.description {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.notify-form input {
    padding: 12px 20px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    width: 250px;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.notify-form input:focus {
    border-color: var(--text-primary);
}

.notify-form button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.notify-form button:hover {
    background-color: #333333;
}

footer p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .notify-form {
        flex-direction: column;
    }
    .notify-form input {
        width: 100%;
    }
}
