/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* Container Styles */
.container {
    max-width: 680px;
    width: 100%;
    padding: 40px 20px;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #ffffff;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.profile-img:hover {
    transform: scale(1.05);
}

h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.bio {
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    max-width: 500px;
}

.link-item {
    background-color: #1e1e1e;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
}

.link-item:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.link-item.primary {
    background-color: #ffffff;
    color: #121212;
    font-weight: 600;
}

.link-item.primary:hover {
    background-color: #f0f0f0;
}

.link-item i {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .bio {
        font-size: 1rem;
        line-height: 1.6;
    }

    .link-item {
        padding: 14px 16px;
    }
} 