body {
    background-color: #0d0d0d;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.profile-card {
    background-color: #181818;
    border: 2px solid #2d2d2d;
    border-radius: 40px; 
    padding: 40px 30px; 
    text-align: center;
    max-width: 400px; 
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.profile-card img {
    width: 130px; 
    object-fit: fill;
    margin-bottom: 5px;
}

.profile-card h1 {
    font-size: 28px; 
    font-weight: 400;
    margin: 0;
    color: #ffffff;
}


.profile-card p {
    font-size: 18px;
    font-weight: 400;
    color: #8a8a8a;
    margin-top: 5px;
    margin-bottom: 20px;
}


.button-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #0d0d0d;
    text-decoration: none;
    padding: 15px 20px; 
    border-radius: 10px;
    font-size: 20px; 
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.social-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.social-button .fa-brands {
    font-size: 22px; 
    margin-right: 12px;
}

@media (max-width: 400px) {
    .profile-card {
        padding: 30px 20px;
        max-width: 300px;
    }
    .profile-card img {
        width: 100px;
        height: 100px;
    }
    .profile-card h1 {
        font-size: 24px;
    }
    .profile-card p {
        font-size: 16px;
    }
    .social-button {
        font-size: 18px;
    }
}