body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #111;
    color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.profile {
    display: flex;
    justify-content: center;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #333;
    object-fit: cover;
}

h1 {
    font-size: 3rem;
    margin-top: 10px;
    margin-bottom: 0;
    background: linear-gradient(90deg, #7f5cff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links a {
    margin-right: 15px;
    color: #eee;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.2s;
}

.social-links a:hover {
    color: #7f5cff;
}

.links {
    width: 100%;
    max-width: 600px;
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.link-card {
    padding: 18px 22px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.link-card .arrow-icon {
    margin-left: auto;
    color: #7f5cff;
}

.place-holder:not(:last-child) {
    display: none;
}

.link-card:hover {
    border-color: #7f5cff;
    transform: translateY(-2px);
}

footer {
    opacity: 0.5;
    margin-top: 60px;
    font-size: 0.9rem;
}
