:root {
    --crust: #181926;
    --mauve: #c6a0f6;
    --text: #cad3f5;
    --subtext: #a5adcb;
    --base: #24273a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--base);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    user-select: none;
}

.wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.card {
    text-align: center;
    max-width: 800px;
}

.legal {
    text-align: left;
    font-size: 0.9rem;
    color: var(--subtext);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 span {
    color: var(--mauve);
}

.link {
    cursor: pointer;
    color: var(--mauve);
    text-decoration: none;
    transition: 0.3s ease;
}

.link:hover {
    color: var(--mauve);

}

hr {
    border: none;
    height: 2px;
    margin: 14px 0;
    background: linear-gradient(90deg, transparent, var(--mauve), transparent);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulse {
    0% {
        transform: scaleX(1);
        opacity: 0.1;
    }

    50% {
        transform: scaleX(1.05);
        opacity: 0.6;
    }

    100% {
        transform: scaleX(1);
        opacity: 0.1;
    }
}

.subtitle {
    font-size: 1.1rem;
    color: var(--subtext);
    margin-bottom: 35px;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 24px;
    font-size: 0.9rem;
    color: var(--subtext);
}