  :root{
      --bg:#0f1724; --card:#0b1220; --muted:#b4c7e2; --accent1:#7c3aed; --accent2:#06b6d4; --glass: rgba(255,255,255,0.04);
      --maxw:1100px;--highlight:#4c95cc;
    }


    *{box-sizing:border-box}
    html {
        scroll-behavior: smooth;
    }
   html, body {
    height: auto;
    min-height: 100%;
    background: linear-gradient(180deg, #0f1724 0%, #071022 100%) fixed;
    background-attachment: fixed;
    background-repeat: no-repeat;
   }
    body{
      margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;
      background:linear-gradient(180deg,var(--bg) 0%, #071022 100%); color:#e6eef8; -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale; padding:40px 20px;
    }
    a.logo {
        text-decoration: none;
    }
    .wrap{max-width:var(--maxw); margin:0 auto}

    header{display:flex;align-items:center;gap:18px;margin-bottom:28px}
    .brand{display:flex;align-items:center;gap:12px}
    .logo{
        width:56px;
        height:56px;
        border-radius:12px;
        background: linear-gradient(270deg, #7c3aed, #06b6d4);
        display:flex;align-items:center;
        justify-content:center;
        font-weight:800;
        color:white;
        font-size:20px;
    
        background-size: 200% 200%;
        animation: gradientShift 5s ease infinite;
    }
   
    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    nav{margin-left:auto}
    nav a{color:var(--muted);text-decoration:none;margin-left:18px;font-weight:600}
    nav a.primary{background:linear-gradient(90deg,var(--accent2),var(--accent1));padding:8px 12px;border-radius:10px;color:white}

    .hero{display:grid;grid-template-columns:1fr 360px;gap:28px;margin-bottom:36px}
    .hero-card{
        padding:28px;
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(2,6,23,0.6);
        border: 1px solid rgba(255,255,255,0.03);

    }
    .intro h1{
        margin:0 0 6px;
        font-size:28px;
        letter-spacing:-0.02em;
        
    }

    .tagline {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 28px;
    color: var(--muted);
    max-width: 760px;
    }

    .tagline em {
    color: var(--highlight);     /* cyan accent */
    font-style: normal;
    font-weight: 600;
    }

    .pills{display:flex;gap:8px;flex-wrap:wrap}
    .pill{background:var(--glass);padding:8px 10px;border-radius:999px;color:var(--muted);font-weight:600;font-size:13px}

    .profile{display:flex;flex-direction:column;gap:14px;align-items:center;text-align:center}
    .profile img{width:220px;height:220px;object-fit:cover;border-radius:18px;border:3px solid rgba(255,255,255,0.06)}
    .role{display:flex;gap:8px;align-items:center}
    .role .dot{width:10px;height:10px;border-radius:50%;background:linear-gradient(90deg,var(--accent1),var(--accent2))}

    section h2{margin:0 0 12px;font-size:18px}
    .grid{display:grid;gap:18px}

    /* Projects */
    .projects{grid-template-columns:repeat(3,1fr)}
    .card{
        background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
        padding:14px;
        border-radius:12px;
        overflow:hidden;
        border:1px solid rgba(255,255,255,0.03);
        transition: all 0.3s ease;
    }
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
    }

 
    .thumb{width:100%;height:160px;object-fit:cover;border-radius:8px;margin-bottom:10px}
    .meta{display:flex;justify-content:space-between;align-items:center}
    .meta .tags{display:flex;gap:8px}
    .tag{background:rgba(255,255,255,0.03);padding:6px 8px;border-radius:8px;font-size:12px;color:var(--muted)}

    /* Gallery */
    .gallery{grid-template-columns:repeat(4,1fr)}
    .gallery img{width:100%;height:140px;object-fit:cover;border-radius:10px}

    /* Music strip */
    .music{display:flex;gap:12px;align-items:center}
    .track{flex:1;background:linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:12px;border-radius:10px}

    /* contact */
    .contact{display:flex;gap:20px;align-items:center}
    .contact a{color:white;text-decoration:none;background:linear-gradient(90deg,var(--accent2),var(--accent1));padding:10px 14px;border-radius:10px;font-weight:700}

    footer{
        margin-top:36px;
        color:var(--muted);
        font-size:13px;
        text-align:center;
    }

    /* Responsive */
    @media(max-width:980px){
      .hero{grid-template-columns:1fr}
      .projects{grid-template-columns:repeat(2,1fr)}
      .gallery{grid-template-columns:repeat(2,1fr)}
      .profile img{width:180px;height:180px}
    }
    @media(max-width:560px){
      nav{display:none}
      .projects{grid-template-columns:1fr}
      .gallery{grid-template-columns:1fr}
    }