  /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* --- GENERAL SCROLLBAR STYLING --- */
        * {
            scrollbar-width: thin;        /* Firefox */
            scrollbar-color: #3b82f6 #020617; /* thumb color | track color */
        }

        /* Webkit browsers (Chrome, Edge, Safari) */
        *::-webkit-scrollbar {
            width: 10px;      /* vertical scrollbar width */
            height: 10px;     /* horizontal scrollbar height */
        }

        *::-webkit-scrollbar-track {
            background: #020617;    /* dark track */
            border-radius: 8px;
        }

        *::-webkit-scrollbar-thumb {
            background-color: #3b82f6;  /* blue thumb */
            border-radius: 8px;
            border: 2px solid #020617;  /* space around thumb */
            transition: background 0.3s ease;
        }

        *::-webkit-scrollbar-thumb:hover {
            background-color: #60a5fa; /* lighter blue on hover */
        }

        /* Optional: add subtle shadow for 3D feel */
        *::-webkit-scrollbar-thumb {
            box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
        }

        /* --- SPECIFIC TO GALLERY (HORIZONTAL MOBILE SCROLL) --- */
        .gallery-grid {
            overflow-x: auto;
            scroll-behavior: smooth;
        }

        .gallery-grid::-webkit-scrollbar {
            height: 10px;  /* horizontal scrollbar height */
        }

        .gallery-grid::-webkit-scrollbar-track {
            background: #020617;
        }

        .gallery-grid::-webkit-scrollbar-thumb {
            background-color: #3b82f6;
            border-radius: 8px;
            border: 2px solid #020617;
        }

        .gallery-grid::-webkit-scrollbar-thumb:hover {
            background-color: #60a5fa;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Roboto", sans-serif;
            background: radial-gradient(circle at top, #1f2933 0, #020617 55%);
            color: #f9fafb;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* BACKGROUND ORBS */
        body::before,
        body::after {
            content: "";
            position: fixed;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(37,99,235,0.28), transparent 70%);
            filter: blur(2px);
            z-index: -1;
            animation: float 18s infinite alternate ease-in-out;
        }

        body::before {
            top: -80px;
            left: -120px;
        }

        body::after {
            bottom: -120px;
            right: -60px;
            animation-delay: 5s;
        }

        @keyframes float {
            from { transform: translate3d(0, 0, 0); opacity: 0.7; }
            to   { transform: translate3d(40px, -30px, 0); opacity: 1; }
        }

        /* LAYOUT */
        .container {
            max-width: 1100px;
            margin: 40px auto 60px;
            padding: 0 20px;
        }

        /* REVEAL ANIMATION BASE */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* HEADER / HERO */
        .profile-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
            margin-bottom: 50px;
        }

        .profile-left {
            flex: 0 0 180px;
            display: flex;
            justify-content: center;
        }

        .profile-right {
            flex: 1;
            min-width: 260px;
        }

        .profile-img-wrapper {
            width: 180px;
            height: 180px;
            border-radius: 999px;
            padding: 4px;
            background: linear-gradient(135deg, #2563eb, #38bdf8);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 999px;
            object-fit: cover;
            border: 3px solid #020617;
            cursor: pointer;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .profile-img:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 22px 45px rgba(37,99,235,0.55);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(15,23,42,0.85);
            border: 1px solid rgba(148,163,184,0.4);
            color: #e5e7eb;
            margin-bottom: 10px;
        }

        .badge i {
            color: #3b82f6;
        }

        .profile-name {
            font-family: "Poppins", sans-serif;
            font-size: 2.4rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        .profile-title {
            margin-top: 6px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: .18em;
            color: #60a5fa;
        }

        .profile-summary {
            margin-top: 18px;
            color: #e5e7eb;
            max-width: 520px;
            line-height: 1.8;
            font-size: 0.98rem;
        }

        /* HIGHLIGHTS */
        .section {
            margin-bottom: 60px;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 24px;
        }

        .section-title {
            font-family: "Poppins", sans-serif;
            font-size: 1.4rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .section-title span {
            font-size: 0.9rem;
            color: #9ca3af;
            text-transform: none;
            letter-spacing: 0.02em;
        }

        .section-title i {
            color: #3b82f6;
        }

        .divider {
            height: 1px;
            flex: 1;
            background: linear-gradient(to right, rgba(148,163,184,0.7), transparent);
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 18px;
        }

        .highlight-card {
            background: radial-gradient(circle at top left, rgba(37,99,235,0.18), rgba(15,23,42,0.95));
            border: 1px solid rgba(148,163,184,0.45);
            border-radius: 16px;
            padding: 16px 18px;
            backdrop-filter: blur(12px);
        }

        .highlight-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #9ca3af;
            margin-bottom: 6px;
        }

        .highlight-value {
            font-size: 0.98rem;
            font-weight: 500;
        }

        /* SOCIALS */
        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .social-link {
            width: 46px;
            height: 46px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e5e7eb;
            background: radial-gradient(circle at top, #1d283a, #020617);
            border: 1px solid rgba(148,163,184,0.6);
            text-decoration: none;
            font-size: 1.2rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
        }

        .social-link:hover {
            transform: translateY(-4px);
            color: #60a5fa;
            border-color: #3b82f6;
            box-shadow: 0 16px 26px rgba(15,23,42,0.9);
        }

       /* GALLERY */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        /* Mobile horizontal scroll */
        @media (max-width: 700px) {
            .gallery-grid {
                display: flex;
                overflow-x: auto;
                gap: 15px;
                padding: 5px 0 15px;
                scroll-snap-type: x mandatory;
            }

            .gallery-item {
                flex: 0 0 75%;
                scroll-snap-align: center;
                aspect-ratio: 4/5;
            }
        }

        /* Individual items */
        .gallery-item {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            cursor: pointer;
            background: #020617;
            border: 1px solid rgba(31,41,55,0.9);
            aspect-ratio: 4/5;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(15,23,42,0.15), transparent 60%);
            pointer-events: none;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 32px rgba(0,0,0,0.65);
            border-color: rgba(59,130,246,0.7);
        }

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        /* LIGHTBOX */
        #lightbox {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.92);
            z-index: 9999;
        }

        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 14px;
            box-shadow: 0 0 25px rgba(59,130,246,0.6);
        }

        #close-lightbox {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 48px;
            color: #3b82f6;
            cursor: pointer;
            transition: 0.3s ease;
        }

        #close-lightbox:hover {
            color: #fff;
        }


        /* MUSIC SECTION */
        .music-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
            gap: 22px;
        }

        .pill-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .pill {
            padding: 7px 14px;
            border-radius: 999px;
            border: 1px solid rgba(148,163,184,0.7);
            font-size: 0.82rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #e5e7eb;
            background: rgba(15,23,42,0.8);
        }

        .music-subtitle {
            font-size: 0.84rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #9ca3af;
            margin-bottom: 8px;
        }

        .music-block {
            background: radial-gradient(circle at top left, rgba(37,99,235,0.18), rgba(15,23,42,0.98));
            border-radius: 18px;
            border: 1px solid rgba(148,163,184,0.55);
            padding: 16px 18px;
            backdrop-filter: blur(12px);
        }

        .list {
            list-style: none;
            display: grid;
            gap: 8px;
            margin-top: 4px;
        }

        .list li {
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            color: #e5e7eb;
        }

        .list li span {
            font-size: 0.78rem;
            color: #9ca3af;
        }

        .spotify-embed {
            margin-top: 12px;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(55,65,81,0.9);
            box-shadow: 0 14px 30px rgba(0,0,0,0.8);
        }

        /* THINGS I LOVE */
        .love-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .love-item {
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid rgba(148,163,184,0.7);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            background: rgba(15,23,42,0.9);
        }

        .love-item i {
            color: #60a5fa;
        }

        /* FOOTER */
        footer {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(31,41,55,0.9);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 14px;
            align-items: center;
        }

        footer p {
            font-family: "Pacifico", cursive;
            font-size: 1.05rem;
            color: #9ca3af;
        }

        .footer-links {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .footer-link {
            font-size: 0.9rem;
            color: #60a5fa;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            padding-bottom: 2px;
            transition: border-color 0.25s ease, color 0.25s ease;
        }

        .footer-link:hover {
            color: #93c5fd;
            border-color: #3b82f6;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .profile-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .profile-left {
                align-self: center;
            }

            .music-layout {
                grid-template-columns: minmax(0,1fr);
            }
        }

        @media (max-width: 480px) {
            .profile-name {
                font-size: 2rem;
            }
        }