<style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600&display=swap');

        :root {
            --neon-purple: #a855f7;
            --neon-cyan: #22d3ee;
            --neon-pink: #ec4899;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #221f3b;
            color: white;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            overflow-x: hidden;
            position: relative;
        }

        /* Blurred profile image background */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background: url('assets/images/profile.jpg') center / cover no-repeat;
            filter: blur(12px) brightness(0.35);
            z-index: -1;
            pointer-events: none;
        }

        /* Subtle grid overlay on body */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: 
                linear-gradient(rgba(168, 85, 247, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(34, 211, 238, 0.025) 1px, transparent 1px);
            background-size: 55px 55px;
            pointer-events: none;
            z-index: 0;
        }

        .container {
            width: 100%;
            max-width: 620px;
            position: relative;
            z-index: 1;
            box-shadow: 0 25px 70px rgba(255, 215, 0, 0.6);
            border: 1px solid #ffd700a3;
            background: transparent;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 100%; }
            100% { background-position: 0% 50%; }
        }

        @media (min-width: 640px) {
            body {
                padding-top: 40px;
                padding-bottom: 40px;
            }
            
            .container {
                border-radius: 28px;  
                overflow: hidden;
            }
        }

        /* Hero Section (Sticky Background Component) */
        .hero-section {
            position: sticky;
            top: 0;
            z-index: 1;
            height: 520px;
            overflow: hidden;
            background: transparent;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 18%;
            filter: contrast(1.08) saturate(1.15);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 0px;
            background: linear-gradient(to right, #a855f7, #22d3ee, #ec4899, #b91c1c);
            z-index: 2;
            box-shadow: 0 0 10px #a855f7;
        }

        /* Header actions */
        .header-actions {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .action-btn {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .action-btn:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
        }

        .subscribe-btn {
            background: linear-gradient(90deg, #a855f7, #ec4899);
            color: white;
            border: none;
            padding: 11px 24px;
            border-radius: 9999px;
            font-weight: 700;
            font-size: 0.92rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45);
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 0.3px;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 10px 28px rgba(236, 72, 153, 0.55);
        }

        /* Wrapper: Holds all elements moving over the image */
        .scrolling-content {
            position: relative;
            z-index: 2; 
            margin-top: -150px; 
            padding-top: 100px;
            
            /* MOVING GRADIENT CONTAINER */
            background: linear-gradient(
                -45deg, 
                #1e1b4b, /* Deep Indigo Base */
                #db2777, /* Rich Hot Pink/Magenta */
                #7c3aed, /* Deep Violet Purple */
                #2368fd, /* Royal Blue */
                #059669, /* Emerald Green accent */
                #1e1b4b  /* Smooth loop back to Deep Indigo */
            );
            background-size: 400% 100%;
            animation: gradientBG 10s ease infinite;
            

            /* Mask layer to seamlessly blend the top edge smoothly */
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 120px);
            mask-image: linear-gradient(to bottom, transparent 0%, black 120px);
        }

        /* Profile Info */
        .profile-info {
            padding: 0 32px 12px;
            text-align: center;
            position: relative;
            z-index: 3;
        }

        .name-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2px;
            margin-bottom: 2px;
        }

        h1 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.4);
            letter-spacing: -0.5px;
        }

        .handle {
            font-size: 1.00rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0;
            margin-bottom: 18px;
            text-align: center;
        }

        /* Container that clips the icons so they don't break your page width */
        .social-shortcuts {
            display: flex;
            overflow: hidden;
            width: 100%;
            max-width: 400px; /* Limits the visible width so it looks neat and centered */
            margin: 0 auto 20px;
            position: relative;
            
            /* Creates a soft fade on the left and right edges so icons melt away beautifully */
            mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
        }

        /* The wrapper track updated to look for loopRight */
        .shortcut-track {
            display: flex;
            gap: 12px;
            padding: 4px 0;
            white-space: nowrap;
            animation: loopRight 18s linear infinite; /* Changed name here */
        }

        /* Pause on hover */
        .social-shortcuts:hover .shortcut-track {
            animation-play-state: paused;
        }

        /* The animation rule to smoothly shift from LEFT TO RIGHT endlessly */
        @keyframes loopRight {
            0% {
                transform: translateX(-50%); /* Start tucked away on the left side */
            }
            100% {
                transform: translateX(0%);   /* Pull forward to the right side */
            }
        }

        .social-circle-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;      /* Centers the icon vertically */
            justify-content: center;    /* Centers the icon horizontally */
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: transform 0.2s ease, background 0.2s ease;
            padding: 0;                /* Removes any default padding */
            overflow: hidden;          /* Keeps everything cleanly in the circle */
        }

        .social-circle-btn:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }

        .social-circle-btn img {
            width: 100%;             /* Adjust this percentage to make it larger or smaller inside the circle */
            height: 100%;      /* Must match width to stay perfectly square */
            object-fit: contain;      /* Crucial: Prevents stretching/distortion and fits completely inside */
            display: block;
        }


        /* NEW: Total followers interactive button */
        .followers-trigger {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            border: none;
            color: #ffffff;
            font-family: inherit;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 24px;
            transition: opacity 0.2s;
        }

        .followers-trigger:hover {
            opacity: 0.85;
        }

        .followers-trigger svg {
            transition: transform 0.2s ease;
        }

        .bio {
            font-size: 1.05rem;
            color: rgb(255, 255, 255);
            line-height: 1.55;
            max-width: 420px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* Links Section */
        .links-section {
            padding: 28px 28px 0 28px;
        }

        .links-wrapper {
            display: flex;
            flex-direction: column;
            gap: 13px;
        }

        .link-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgb(212 175 55 / 30%);
            border-radius: 20px;
            padding: 5px 5px;
            text-decoration: none;
            color: white;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(14px);
        }

        .link-card::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #a855f7, #FFD700);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .link-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.11);
            border-color: rgba(168, 85, 247, 0.35);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        }

        .link-card:hover::before { opacity: 1; }

        .link-icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            object-fit: contain; /* Ensures the icon scales cleanly inside its box */
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .link-card:hover .link-icon {
            transform: scale(1.12) rotate(4deg);
        }

        .link-text {
            flex: 1;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.35;
            text-align: center;

        }

        .link-arrow {
            width: 22px;
            height: 22px;
            color: rgba(255, 255, 255, 0.35);
            transition: all 0.3s ease;
        }

        .link-card:hover .link-arrow {
            color: rgb(212, 175, 55);
            transform: translateX(4px);
        }

        .support-label {
            margin: 34px 0 14px;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: rgb(255, 255, 255);
            padding-left: 6px;
            padding-bottom: 15px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .verified-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            transform: translateY(3px)
        }

        /* Gallery */
        .gallery-section { padding: 24px 28px 8px; }

        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .gallery img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s ease;
        }

        .gallery img:hover { transform: scale(1.04); }

        /* Footer */
        .page-footer {
            padding: 24px 28px 32px;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.45);
        }

        .page-footer a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .page-footer a:hover { color: #a855f7; }
        .page-footer .divider { margin: 0 10px; opacity: 0.4; }

        /* Futuristic Modal Styles */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 13, 35, 0.4);
            backdrop-filter: blur(11px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.show {
            display: flex;
            animation: modalEnter 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        @keyframes modalEnter {
            from {
                opacity: 0;
                transform: translateY(35px) scale(0.96);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-content {
            background: rgba(25, 22, 50, 0.603);
            border: 1px solid rgb(212 175 55 / 30%);
            border-radius: 24px;
            width: 100%;
            max-width: 440px;
            padding: 34px 28px;
            position: relative;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 22px;
            font-size: 28px;
            color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: color 0.2s ease;
            line-height: 1;
        }

        .modal-close:hover { color: white; }

        .modal h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 6px;
            background: linear-gradient(90deg, #fff, #c0b8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .modal .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 8px;
            margin-top: 16px;
        }

        .modal input[type="text"],
        .modal input[type="email"],
        .modal textarea {
            width: 100%;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 14px;
            color: white;
            font-size: 1rem;
            outline: none;
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .modal textarea {
            height: 120px;
            resize: none;
        }

        .modal input:focus,
        .modal textarea:focus {
            border-color: #a855f7;
            box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
        }

        .submit-btn {
            width: 100%;
            margin-top: 24px;
            background: linear-gradient(90deg, #a855f7, #22d3ee);
            color: white;
            border: none;
            padding: 17px;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.02rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(168, 85, 247, 0.5);
        }

        /* UPDATED: Followers Modal configured as a perfect Bottom Sheet Drawer */
        .followers-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 13, 35, 0.4);
            backdrop-filter: blur(11px);
            z-index: 1000;
            align-items: flex-end; /* Anchors the content card to the bottom edge */
            justify-content: center;
            padding: 0; /* Clear outer margins to sit flush */
        }

        .followers-modal.show {
            display: flex;
        }

        /* Slide-up slide from the bottom edge */
        @keyframes drawerSlideUp {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .followers-modal .modal-content {
            background: linear-gradient(145deg, #2a254452, #1e1b4b52, #3a2a5c52);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: none; /* Looks cleaner attached to the screen edge */
            width: 100%;
            max-width: 620px; /* Perfectly matches the container profile bounds width */
            padding: 20px 24px 40px; /* Extra bottom padding for comfortable thumb reaching */
            border-top-left-radius: 28px;
            border-top-right-radius: 28px;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            position: relative;
            box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.5);
            
            /* Attach the animation when shown */
            animation: drawerSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .followers-header-pill {
            width: 44px;
            height: 5px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 3px;
            margin: 0 auto 20px;
        }

        .followers-total-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            text-align: center;
}

        .followers-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            text-align: left;
        }

        .follower-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .follower-avatar-container {
            position: relative;
            width: 48px;
            height: 48px;
            border: 1px solid #ffd700;
            border-radius: 50%;
            padding: 1px;
            background: #1e1b4b;
            box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
        }

        .follower-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            background: #444;
        }

        .follower-badge {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .follower-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .follower-details {
            flex: 1;
        }

        .follower-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: white;
            line-height: 1.2;
        }

        .follower-count {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 2px;
        }

        /* Pause heavy background animations when any modal is open */
        body:has(.modal.show) .scrolling-content {
            animation-play-state: paused !important;
        }

        /* Optimize modal backdrop rendering */
        .modal {
            will-change: opacity;
        }

    </style>