body {
    background: linear-gradient(#457081, #806868);
    margin: 0;
    font-family: sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.star-shape {
    font-size: 150px;
    color: white;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.7); 
}

.link-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    width: 100%;
    max-width: 440px; 
}

.social-box {
    background-color: rgba(255, 255, 255, 0.1); 
    border: 2px solid white;
    border-radius: 15px;
    margin: 10px;
    width: 180px; 
    height: 100px; 
    text-decoration: none; 
    color: white; 
    font-weight: bold;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.home-btn {
    border-radius: 50px; 
    background-color: rgba(255, 255, 255, 0.3); 
    border: 3px solid #fff; 
    width: 220px; 
    order: 2; 
    flex-basis: 100%; 
    margin: 20px auto; 
}

.social-box h3 {
    margin: 0;
}

@media (max-width: 600px) {
    .star-shape { font-size: 80px; }
    
    .social-box { 
        width: 85%; 
        height: 70px; 
        flex-basis: auto; 
    }

    .home-btn { 
        width: 90%; 
        order: -1; 
        margin: 10px auto;
    }
}
