*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050505;
    color:white;
    min-height:100vh;
    transition:0.4s ease;
}

.container{
    max-width:700px;
    margin:auto;
    padding:30px 20px;
}

.profile-section{
    text-align:center;
}

/* PROFILE IMAGE */
.profile-pic{
    width:280px;
    height:280px;
    border-radius:50%;

    object-fit:cover;

    /* Move image slightly down so hands are visible */
    object-position:center 20%;

    border:4px solid #00e5ff;

    box-shadow:
        0 0 20px #00e5ff,
        0 0 40px rgba(0,229,255,0.5),
        0 0 80px rgba(0,229,255,0.25);

    transition:0.4s ease;
}

.profile-pic:hover{
    transform:scale(1.03);
}

.profile-section h1{
    margin-top:20px;
    font-size:2rem;
    font-weight:700;
}

.profile-section h3{
    margin-top:10px;
    color:#00e5ff;
    font-weight:500;
    font-size:1rem;
    line-height:1.5;
}

.profile-section p{
    margin-top:15px;
    color:#cfcfcf;
    line-height:1.7;
}

.visitor-counter{
    margin-top:20px;
}

/* SOCIAL ICONS */

.social-icons{
    display:flex;
    justify-content:center;
    gap:22px;
    margin:30px 0;
}

.social-icons a{
    color:white;
    font-size:1.7rem;
    transition:0.3s ease;
}

.social-icons a:hover{
    color:#00e5ff;
    transform:translateY(-5px);
}

/* LINK CARDS */

.links{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.card{
    text-decoration:none;
    color:white;

    display:flex;
    align-items:center;
    gap:18px;

    padding:22px;

    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:20px;

    backdrop-filter:blur(12px);

    transition:all 0.35s ease;
}

.card:hover{
    transform:translateY(-6px) scale(1.02);

    border-color:#00e5ff;

    box-shadow:
        0 0 20px rgba(0,229,255,0.5),
        0 0 40px rgba(0,229,255,0.25);
}

.card i{
    font-size:2rem;
    color:#00e5ff;
    min-width:40px;
}

.card h2{
    font-size:1.1rem;
    font-weight:600;
}

.card p{
    color:#bdbdbd;
    font-size:0.9rem;
    margin-top:3px;
}

/* THEME TOGGLE */

.theme-toggle{
    position:fixed;
    top:20px;
    right:20px;

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:#111;
    color:#00e5ff;

    font-size:1.2rem;

    box-shadow:
        0 0 15px rgba(0,229,255,0.5);

    transition:0.3s ease;
}

.theme-toggle:hover{
    transform:rotate(180deg);
}

/* LIGHT MODE */

.light-mode{
    background:#f5f5f5;
    color:#111;
}

.light-mode .card{
    background:white;
    color:#111;
}

.light-mode .card p{
    color:#555;
}

.light-mode .social-icons a{
    color:#111;
}

.light-mode .profile-section h3{
    color:#0097a7;
}

.light-mode .card i{
    color:#0097a7;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0d0d0d;
}

::-webkit-scrollbar-thumb{
    background:#00e5ff;
    border-radius:10px;
}

/* MOBILE */

@media(max-width:768px){

    .profile-pic{
        width:230px;
        height:230px;
    }

    .profile-section h1{
        font-size:1.7rem;
    }

    .profile-section h3{
        font-size:0.9rem;
    }

    .card{
        padding:18px;
    }

    .card i{
        font-size:1.8rem;
    }
}