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

body {
    background: #0f0f1a;
    color: #d4d0e8;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    min-height: 100vh;
    overflow-x: hidden;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name-block {
    margin-bottom: 2.5rem;
}

.name-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8b7fd4;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 3.6rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.05;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8b7fd4, transparent);
}

p {
    line-height: 1.95;
    margin-bottom: 1.5rem;
    opacity: 0.88;
}

footer {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

footer a {
    text-decoration: none;
    color: #8b7fd4;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s;
}

footer a:hover {
    opacity: 0.7;
}