:root {
    --bg: #1F2328;
    --card: #F5F1E8;
    --text_light: #F5F1E8;
    --text_dark: #1F2328;
    --accent: #B79C6D;
    --hover: #A6A09A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background: var(--bg);
    color: var(--text_light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
}

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

.profile img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin-bottom: 50px;
    border: 3px solid var(--accent);
}

.profile h1 {
    font-size: 15px;
    font-weight: 600;
}

.profile p {
    font-size: 14px;
    color: var(--text_light);
    margin-bottom: 50px;
}

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

.link-btn {
    display: block;
    text-decoration: none;
    background: var(--card);
    padding: 24px 0;
    border: 3px solid var(--accent);
    border-radius: 12px;
    color: var(--text_dark);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.link-btn:hover {
    background: var(--accent);
    color: #022c22;
    transform: translateY(-2px);
}

.footer {
    margin-top: 50px;
    font-size: 14px;
}