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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #cc0000 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 680px;
    width: 100%;
    text-align: center;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 4px solid white;
}

h1 {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
}

.bio {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-button {
    background: white;
    color: #333;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.2s;
}

.link-button:hover {
    transform: scale(1.02);
}
