:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    /* Subtle radial gradient background for a modern touch without being too fancy */
    background: radial-gradient(circle at 50% -20%, #1a1a2e 0%, #050505 50%);
    perspective: 1000px;
}

.container {
    text-align: center;
    max-width: 640px;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    transform-style: preserve-3d;
}

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

.logo {
    font-size: 4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(60px);
}

h1 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    transform: translateZ(30px);
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.notify-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.notify-form input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    width: 320px;
    transition: all 0.3s ease;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-form input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.notify-form button {
    background: white;
    color: black;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
    background: #f4f4f4;
}

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

.success-msg {
    color: #4ade80;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 600px) {
    .logo {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 1.2rem;
    }
    
    p {
        max-width: 100%;
    }

    .notify-form {
        flex-direction: column;
        width: 100%;
    }
    
    .notify-form input {
        width: 100%;
    }

    .notify-form button {
        width: 100%;
    }
}
