body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url("/assets/img/background.jpeg") no-repeat center center fixed;
    background-size: cover;
    color: #e0e0e0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 350px;
    width: 100%;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.6);
}

.profile-pic img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #00e5ff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    margin-bottom: 15px;
    object-fit: cover;
}

.name {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.bio {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px; 
    margin-bottom: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: #bbb;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00e5ff;
    text-shadow: 0 0 8px #00e5ff;
}

.follow-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #00e5ff, #007acc);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.follow-btn:hover {
    background: linear-gradient(135deg, #007acc, #00e5ff);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.8);
}

@media (max-width: 600px) {
    .card {
        padding: 30px 20px;
    }

    .name {
        font-size: 1.3rem;
    }

    .bio {
        font-size: 0.85rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }
}
