body {
    margin: 0;
    font-family: "Helvetica Neue", sans-serif;
    background: linear-gradient(to bottom right, #c9d6ff, #e2e2e2);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 600px;
    width: 90%;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    color: #444;
}

.pronouns, .gender {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #666;
}

.links {
    margin-top: 2rem;
}

.links a {
    display: block;
    margin: 0.5rem 0;
    padding: 0.8rem;
    background: #6a82fb;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.links a:hover {
    background: #5c6bc0;
}

footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #777;
}

