:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --card-bg: #000000;
    --card-hover: #000000;
    --primary-color: #ffffff;
    --shadow: 0 4px 6px -1px rgba(248, 242, 242, 0.1), 0 2px 4px -1px rgba(255, 253, 253, 0.171);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.profile {
    margin-bottom: 32px;
}

.avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: var(--shadow);
}

.profile h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    background-color: var(--card-bg);
    color: var(--primary-color);
    text-decoration: none;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow);
    font-weight: 600;
}

.link-card i {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
}

.link-card:hover {
    transform: translateY(-2px);
    background-color: var(--card-hover);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1);
}

footer {
    margin-top: 50px;
    font-size: 0.75rem;
    opacity: 0.6;
}