/* Import a stylish Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
    --bg: #1a1a1a;
    --text-primary: #e5e5e5;
    --text-secondary: #9f9f9f;
    --accent: #00ffe1;
    --button-bg: #2e2e2e;
    --button-hover: #00ffe1;
    --button-text-hover: #1a1a1a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 1rem;
    text-align: center;
}

.container {
    background: #242424;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 225, 0.1);
    max-width: 500px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

button {
    background-color: var(--button-bg);
    color: var(--text-primary);
    border: none;
    padding: 0.8rem 2rem;
    margin-bottom: 20px;
    border-radius: 999px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: var(--button-hover);
    color: var(--button-text-hover);
    transform: scale(1.05);
}

/* Subtle fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
