:root {
    --bg-color: #000000;
    --card-bg: #111111;
    --text-color: #ffffff;
    --accent-color: #333333;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* --- Layout --- */
.main-container {
    width: 100%;
    max-width: 600px;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

/* --- Shapes (Background Glow) --- */
.shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #444;
    top: -50px;
    left: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: #222;
    bottom: -50px;
    right: -50px;
}

/* --- Profile --- */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.bio {
    color: #888;
    font-size: 0.95rem;
    font-weight: 300;
}

/* --- Link Cards --- */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    border: 1px solid #222;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    background-color: #1a1a1a;
    border-color: #444;
}

.icon-plain {
    font-size: 1.5rem;
    margin-right: 16px;
}

.text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.text p {
    font-size: 1.0rem;
    color: #888;
}

/* --- Footer --- */
footer {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #444;
    text-align: center;
}