
        @font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JBM400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JBM500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JBM700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* Space Grotesk */

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SG400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SG500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SG700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* Noto Sans Bengali */

@font-face {
    font-family: 'Noto Sans Bengali';
    src: url('../fonts/NSB400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans Bengali';
    src: url('../fonts/NSB500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans Bengali';
    src: url('../fonts/NSB700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
        /* ==========================================================================
           [NOTE-01] GLOBAL CONSTANTS & PALETTE THEME VARIABLES
           ========================================================================== */
        :root {
            --bg-color: #060608;
            --card-bg: rgba(18, 18, 22, 0.75);
            --accent-cyan: #00f0ff;
            --accent-purple: #7000ff;
            --accent-green: #00ff66;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --border-color: #22222a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none; /* Interactive pointer track active override */
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Space Grotesk','Noto Sans Bengali', sans-serif;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            overflow-x: hidden;
            padding-bottom: 100px; /* Space so floating dock doesn't cover content */
        }
        

        /* ==========================================================================
           [NOTE-02] VISUAL FX STYLES (MATRIX BG, PARTICLE ENGINE & CURSORS)
           ========================================================================== */
        #matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 1;
            opacity: 0.12;
            pointer-events: none;
            will-change: transform; /* Hint to browser to leverage GPU context layers */
        }

        .matrix-icon-particle {
            position: fixed;
            z-index: 1;
            font-size: 1.25rem;
            color: rgba(0, 240, 255, 0.35);
            background: rgba(18, 18, 22, 0.45);
            border: 1px solid rgba(0, 240, 255, 0.15);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            backdrop-filter: blur(1px);
            box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
            transform: translate(-50%, -50%) scale(0.4);
            opacity: 0;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
            will-change: transform, opacity;
        }

        .matrix-icon-particle.snap-out {
            transform: translate(-50%, -50%) scale(0) !important;
            opacity: 0 !important;
            transition: transform 0.15s ease-in, opacity 0.15s ease-in !important;
        }

        #custom-pointer {
            width: 6px;
            height: 6px;
            background: var(--accent-cyan);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, background-color 0.2s;
            will-change: left, top;
        }

        #custom-pointer-aura {
            width: 30px;
            height: 30px;
            border: 1px solid var(--accent-purple);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%) scale(1);
            transition: transform 0.08s ease-out;
            will-change: left, top, transform;
        }

        /* ==========================================================================
           [NOTE-03] LAYOUT ELEMENTS STYLING (AVATAR, HERO PANELS & CONTENT CARDS)
           ========================================================================== */
        .main-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            padding: 60px 20px 30px;
            z-index: 2;
        }

        .profile-container {
            text-align: center;
            margin-bottom: 25px;
        }

        .avatar-frame {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
        }

        .avatar {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border-color);
            z-index: 3;
            position: relative;
        }

        .avatar-glow {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
            filter: blur(15px);
            opacity: 0.5;
            z-index: 2;
            animation: breathe 4s infinite alternate ease-in-out;
        }

        @keyframes breathe {
            0% { transform: scale(0.96); opacity: 0.4; }
            100% { transform: scale(1.04); opacity: 0.6; }
        }

        .glitch-title-wrapper {
            position: relative;
            display: inline-block;
        }

        h1.glitch-target {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 6px;
            position: relative;
        }

        h1.glitch-target::before, h1.glitch-target::after {
            content: "A M Khalid";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--bg-color);
            clip: rect(0, 0, 0, 0);
        }

        h1.glitch-target::before {
            left: 2px;
            text-shadow: -2px 0 var(--accent-cyan);
            animation: cyber-glitch 2.5s infinite linear alternate-reverse;
        }

        h1.glitch-target::after {
            left: -2px;
            text-shadow: -2px 0 var(--accent-purple);
            animation: cyber-glitch-2 3s infinite linear alternate-reverse;
        }

        @keyframes cyber-glitch {
            0% { clip: rect(12px, 9999px, 66px, 0); }
            5% { clip: rect(34px, 9999px, 5px, 0); }
            10% { clip: rect(88px, 9999px, 102px, 0); }
            15% { clip: rect(0, 0, 0, 0); }
            100% { clip: rect(0, 0, 0, 0); }
        }

        @keyframes cyber-glitch-2 {
            0% { clip: rect(76px, 9999px, 110px, 0); }
            6% { clip: rect(5px, 9999px, 45px, 0); }
            11% { clip: rect(122px, 9999px, 14px, 0); }
            16% { clip: rect(0, 0, 0, 0); }
            100% { clip: rect(0, 0, 0, 0); }
        }

        .subtitle {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            color: var(--accent-cyan);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .summary {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .content-panel {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 25px;
            backdrop-filter: blur(12px);
        }

        .panel-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
        }

        .links-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .btn-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .circle-btn {
            position: relative;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background-color: rgba(20, 20, 25, 0.9);
            border: 1px solid var(--border-color);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-main);
            text-decoration: none;
            font-size: 1.3rem;
            transition: border 0.3s, color 0.3s, box-shadow 0.3s;
        }

        .circle-btn.yt-glow:hover { color: #ff0000; border-color: #ff0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.4); }
        .circle-btn.ig-glow:hover { color: #f09433; border-color: #e6683c; box-shadow: 0 0 20px rgba(230, 104, 60, 0.4); }
        .circle-btn.fb-glow:hover { color: #1877f2; border-color: #1877f2; box-shadow: 0 0 20px rgba(24, 119, 242, 0.4); }
        .circle-btn.tk-glow:hover { color: #00f2fe; border-color: #fe0979; box-shadow: 0 0 20px rgba(0, 242, 254, 0.4); }
        .circle-btn.x-glow:hover { color: #ffffff; border-color: #737373; box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
        .circle-btn.rd-glow:hover { color: #ff4500; border-color: #ff4500; box-shadow: 0 0 20px rgba(255, 69, 0, 0.4); }
        .circle-btn.wa-glow:hover { color: #25d366; border-color: #25d366; box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); }
        .circle-btn.mail-glow:hover { color: var(--accent-cyan); border-color: var(--accent-cyan); box-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }
        .circle-btn.phone-glow:hover { color: var(--accent-purple); border-color: var(--accent-purple); box-shadow: 0 0 20px rgba(112, 0, 255, 0.4); }

        .status-entry {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: rgba(10, 10, 12, 0.4);
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .status-entry:last-child { margin-bottom: 0; }
        .status-entry.active { border-color: rgba(0, 240, 255, 0.3); }
        
        .status-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 16px;
        }

        .status-left-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .status-left-meta i.title-icon {
            color: var(--accent-cyan);
            font-size: 0.85rem;
        }

        .status-timestamp {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: var(--text-muted);
            background: rgba(34, 34, 42, 0.4);
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.02);
            flex-shrink: 0;
        }

        .status-icon-indicator {
            font-size: 0.8rem;
            color: var(--text-muted);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .status-entry.active .status-icon-indicator {
            transform: rotate(180deg);
            color: var(--accent-cyan);
        }

        .status-content-drawer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .status-text {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #d1d5db;
            padding: 4px 16px 16px 41px;
        }

        .video-stack { display: flex; flex-direction: column; gap: 20px; }
        .video-container-169 {
            position: relative; width: 100%; padding-bottom: 56.25%; height: 0; border-radius: 8px; overflow: hidden; border: 1px solid #2a2a35;
        }
        .video-container-169 iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
        .shorts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .shorts-container-916 {
            position: relative; width: 100%; padding-bottom: 177.77%; height: 0; border-radius: 8px; overflow: hidden; border: 1px solid #2a2a35;
        }
        .shorts-container-916 iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
        .promo-note { font-size: 0.85rem; color: var(--text-muted); text-align: center; line-height: 1.5; max-width: 420px; margin-top: 5px; }

        .floating-footer-dock {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translate(-50%, 20px);
            width: calc(100% - 40px);
            max-width: 580px;
            background: rgba(10, 10, 14, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(16px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s;
        }

        .floating-footer-dock.visible {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, 0);
        }

        .dock-clock {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.76rem;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.4;
            white-space: nowrap;
        }

        .dock-clock-dot {
            width: 6px;
            height: 6px;
            background-color: var(--accent-cyan);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--accent-cyan);
            flex-shrink: 0;
        }

        .top-scroller-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255,255,255,0.08);
            color: var(--text-main);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .top-scroller-btn:hover {
            background: var(--accent-purple);
            border-color: var(--accent-purple);
            box-shadow: 0 0 15px rgba(112,0,255,0.4);
            transform: translateY(-2px);
        }

        /* ==========================================================================
           [NOTE-04] SCREEN RESPONSIVENESS & MOBILE OVERRIDES
           ========================================================================== */
        @media (max-width: 480px) {
            * { cursor: auto !important; }
            #custom-pointer, #custom-pointer-aura, .matrix-icon-particle { display: none !important; }
            .main-wrapper { padding: 30px 15px 20px; }
            .circle-btn { width: 46px; height: 46px; font-size: 1.15rem; }
            .btn-row { gap: 10px; }
            .status-text { padding: 4px 16px 16px 16px; }
            .floating-footer-dock { padding: 10px 16px; width: calc(100% - 20px); }
            .dock-clock { font-size: 0.65rem; gap: 5px; }
        }