/* assets/css/style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:
    radial-gradient(circle at top,#1b4ed8 0%,#050505 30%);
    min-height:100vh;
    overflow-x:hidden;
    color:white;
}

.bg-effect{
    position:fixed;
    width:500px;
    height:500px;
    background:#ff0000;
    filter:blur(180px);
    opacity:.18;
    top:-150px;
    left:-100px;
    z-index:0;
}

.container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:480px;
    margin:auto;
    padding:30px 20px 40px;
}

.hero{
    text-align:center;
    margin-bottom:35px;
}

.logo-box{
    width:150px;
    height:150px;
    margin:auto;
    border-radius:50%;
    padding:8px;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #1b4ed8,
    #d60000
    );

    box-shadow:
    0 0 30px rgba(255,0,0,.35),
    0 0 60px rgba(27,78,216,.25);

    animation:float 4s ease-in-out infinite;
}

.logo{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    background:white;
}

.hero h1{
    margin-top:18px;
    font-size:38px;
    font-weight:700;
    letter-spacing:2px;
    color:white;

    text-shadow:
    0 0 10px rgba(255,255,255,.3);
}

.subtitle{
    margin-top:8px;
    color:#d7d7d7;
    font-size:15px;
}

.socials{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.social-card{
    text-decoration:none;
    color:white;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.1);

    border-radius:22px;

    padding:18px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    transition:.35s;
}

.social-card:hover{
    transform:translateY(-4px) scale(1.02);

    background:
    linear-gradient(
    135deg,
    rgba(214,0,0,.28),
    rgba(27,78,216,.28)
    );

    border-color:
    rgba(255,255,255,.2);

    box-shadow:
    0 10px 25px rgba(0,0,0,.35);
}

.left{
    display:flex;
    align-items:center;
    gap:14px;
}

.icon-box{
    width:58px;
    height:58px;
    border-radius:100%;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    box-shadow:
    0 4px 15px rgba(0,0,0,.25);
}

.icon{
    width: 56px;
    height: 56px;
    object-fit:contain;
}

.info{
    display:flex;
    flex-direction:column;
}

.name{
    font-size:17px;
    font-weight:600;
}

.desc{
    font-size:13px; 
    color:#d6d6d6;
}

.right{
    font-size:26px;
    font-weight:bold;
    color:white;
}

.footer{
    text-align:center;
    font-size:13px;
    color:#bfbfbf;
    opacity:.8;
    width: 100%;
    text-align: center;
    position: fixed;
    left: 0px;
    bottom: 0px;
    padding: 10px 0px 20px 0px;
}

@keyframes float{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }
}

@media(max-width:480px){
.modal-content{
    max-width: 100%;
    width: 80%;
}
    .hero h1{
        font-size:30px;
    }

    .logo-box{
        width:130px;
        height:130px;
    }

}