@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    overflow: hidden;
}

.container {
    padding: 2rem;
}

.card {
    background: rgb(219, 215, 215);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.logo-container {
    position: relative;
    margin-bottom: 10px;
}

.logo {
    max-width: 200px;
    height: auto;
    position: relative;
    z-index: -1;
    margin-bottom:0px;
}

.user-info h2{
    font-size: 23px;
    text-transform: capitalize;
}

.user-info span{
    color: rgb(93, 87, 87);
    font-size: 20px;
    font-weight: 600;
    
}
.smoke-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    filter: blur(20px);
    animation: smoke 3s infinite alternate;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    height: 100%;
}

.social-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    overflow: hidden;
    z-index:9;
}

.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover {
    transform: translateY(-5px);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background: #4267B2;
}

.gmail {
    background: rgb(196, 61, 61);
}
.gmail i{
    color: white;
}

.linkedin {
    background: #0077B5;
}
.website{
    background: rgb(193, 189, 189);
}

.hover-text {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

.social-icon:hover .hover-text {
    opacity: 1;
    bottom: -25px;
}

@keyframes smoke {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .card {
        padding: 2rem;
    }

    .logo {
        font-size: 2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}