
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root{
    --bg:#060816;
    --bg2:#0d1225;
    --glass:rgba(255,255,255,0.06);
    --stroke:rgba(255,255,255,0.08);
    --text:#eef3ff;
    --muted:#9aa8d6;
    --cyan:#61f3ff;
    --blue:#6a8cff;
    --shadow:0 0 40px rgba(97,243,255,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(circle at top left,#182347 0%,transparent 30%),
        radial-gradient(circle at top right,#111b3c 0%,transparent 30%),
        linear-gradient(180deg,var(--bg),#05070f);
    color:var(--text);
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size:32px 32px;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero-content{
    width:min(900px,100%);
}

.logo{
    font-size:5rem;
    font-weight:900;
    letter-spacing:-4px;
    background:linear-gradient(90deg,var(--cyan),var(--blue));
    -webkit-background-clip:text;
    color:transparent;
    text-shadow:0 0 40px rgba(97,243,255,.2);
}

.subtitle{
    margin-top:18px;
    color:var(--muted);
    font-size:1.15rem;
    line-height:1.8;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    color:white;
    padding:14px 22px;
    border-radius:18px;
    background:var(--glass);
    border:1px solid var(--stroke);
    backdrop-filter:blur(18px);
    box-shadow:var(--shadow);
    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-4px);
    border-color:rgba(97,243,255,.4);
}

.section{
    padding:100px 0;
}

.section-title{
    font-size:2rem;
    margin-bottom:28px;
    font-weight:800;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}

.card{
    background:var(--glass);
    border:1px solid var(--stroke);
    border-radius:26px;
    padding:28px;
    backdrop-filter:blur(18px);
    box-shadow:0 0 24px rgba(0,0,0,.35);
    transition:.25s ease;
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgba(97,243,255,.2);
    box-shadow:0 0 40px rgba(97,243,255,.12);
}

.card h3{
    margin-bottom:12px;
}

.card p{
    color:var(--muted);
    line-height:1.7;
}

.skills{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.skill{
    padding:12px 18px;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.contact-links{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.contact-links a{
    color:white;
    text-decoration:none;
}

.bottom-nav{
    position:fixed;
    left:50%;
    bottom:24px;
    transform:translateX(-50%);
    background:rgba(9,13,28,.82);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:14px 20px;
    display:flex;
    gap:24px;
    backdrop-filter:blur(20px);
    z-index:999;
    box-shadow:
        0 0 40px rgba(97,243,255,.12),
        inset 0 0 20px rgba(255,255,255,.03);
}

.nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    color:var(--muted);
    text-decoration:none;
    font-size:.8rem;
    transition:.2s ease;
}
.nav-item svg,
.repo-link svg,
.contact-links svg {
    width: 20px;
    height: 20px;
    stroke: #61f3ff;
    filter:
        drop-shadow(0 0 4px #61f3ff)
        drop-shadow(0 0 12px #61f3ff);
}
.nav-item:hover svg {
    filter:
        drop-shadow(0 0 6px #61f3ff)
        drop-shadow(0 0 20px #61f3ff)
        drop-shadow(0 0 40px #61f3ff);
}

.nav-item:hover{
    color:var(--cyan);
    transform:translateY(-3px);
}

.footer{
    padding:60px 0 120px;
    text-align:center;
    color:var(--muted);
}

.repo-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:14px;
    text-decoration:none;
    color:var(--cyan);
}

@media(max-width:768px){
    .logo{
        font-size:3rem;
    }

    .bottom-nav{
        width:92%;
        justify-content:space-around;
        gap:10px;
    }

    .nav-item span{
        font-size:.7rem;
    }
}
.avatar-container{
    width:180px;
    height:180px;
    margin:auto;
    margin-bottom:30px;
}

.avatar{
    width:100%;
    height:100%;
    object-fit:cover;

    border-radius:50%;

    border:2px solid rgba(97,243,255,.4);

    box-shadow:
        0 0 20px rgba(97,243,255,.3),
        0 0 60px rgba(97,243,255,.15);
}