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

body {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.menu-icon {
    align-self: flex-start;
    font-size: 24px;
    margin-bottom: 10px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.bio {
    font-size: 16px;
    margin-bottom: 12px;
}

.description {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.social-icons a {
    color: #fff;
    font-size: 42px;
    text-decoration: none;
}

.links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.link-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #5f5f3e;
    color: #fff;
    text-decoration: none;
    padding: 20px 24px;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.link-item:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    .social-icons {
        gap: 20px;
    }
    
    .description {
        max-width: 100%;
    }
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #888;
    text-align: center;
}

.footer p {
    opacity: 0.7;
}

.footer p:hover {
    opacity: 1;
} 