:root {
    --primary-color: #7C3AED;
    --bg-color: #242424;
    --text-color: #ffffff;
    --p-color: #c9c9c9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

a.button {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

a.button:hover {
    background: #6b21a8;
    transform: translateY(-2px);
}

.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #c9c9c9;
}

.link {
    color: var(--primary-color);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.link:hover {
    text-decoration: underline;
}

