        @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

        @font-face {
            font-family: 'Array';
            src: url('../biolinks/font/Array.woff2') format('woff2'), url('../biolinks/font/Array.woff') format('woff'), url('../biolinks/font/Array.ttf') format('truetype');
            font-weight: 400;
            font-display: swap;
            font-style: normal;
        }.background-image {
    width: 1920px;
    height: 1080px;
    background: url('./assets/bg/0a766f6015ea33b18f312856ac59c6e0.gif') no-repeat center center;
    background-size: contain; 
}

        * {
            -ms-user-select: none;
            user-select: none;
            -webkit-user-drag: none;
            -moz-user-select: none;
            margin: 0;
            padding: 0;
            user-select: none;
            cursor: url('assets/arrow.cur'), auto;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        * img {
            pointer-events: none;
        }

        a {
            pointer-events: auto !important;
        }

        a img {
            pointer-events: auto !important;
        }


        html,
        body {
            -ms-overflow-style: none;
        }

                .background-image {
            width: 1920px;
            height: 1080px;
            background: url('./assets/bg/0a766f6015ea33b18f312856ac59c6e0.gif');
            background-size: contain; 
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: all 0.6s ease-out;
        }

        .overlay-text {
            color: #fff;
            font-size: 24px;
            letter-spacing: 2px;
            animation: pulse 2s infinite;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        @keyframes pulse {
            0% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.5;
            }
        }

        .hidden {
            display: none !important;
        }

        main {
            opacity: 0;
            transition: opacity 1s;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            overflow: hidden;
            position: relative;
            background-color: #000;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            background:
                linear-gradient(rgba(18, 16, 16, 0) 50%,
                    rgba(0, 0, 0, 0.25) 50%),
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' seed='0' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: auto 2px, 200px 200px;
            opacity: 0.25;
            z-index: 50000;
            display: none;
            pointer-events: none;
            image-rendering: pixelated;
        }



        body::after {
            content: '';
            top: 0;
            position: fixed;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            filter: brightness(0.8) saturate(2.5);
            z-index: 1000;
            pointer-events: none;
        }

        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 0px;
            gap: px;
        }

        .profile {
            background-color: rgba(20, 20, 23, 0.35);
            color: #efe6e6;
            backdrop-filter: blur(10px);
            border-radius: 25px;
            width: 100%;
            max-width: 450px;
            height: fit-content;
            height: 290px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #78726d20;
        }

        .profile.animate-in {
            opacity: 1;
            transform: translateY(0);
        }


        .profile img {
            border-radius: 50%;
            width: 150px;
            height: 150px;
            object-fit: cover;
            pointer-events: none;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            animation: fadeIn 1s ease;
        }

        .profile img:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .profile h3 {
            margin: 0;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 10.9px;
            animation: slideUp 0.5s ease;
            margin-top: 25px;
        }

        .profile p {
            font-size: 1.1rem;
            color: #efe6e6;
            text-align: center;
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 20px;
            animation: slideUp 0.7s ease;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            animation: slideUp 1.3s ease;
        }

        .social-link {
            width: 84.7px;
            height: 38.3px;
            font-size: 61.6px;
            color: #efe6e6;
            filter: drop-shadow(0 0 5px #efe6e6);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-3px);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .username-container {
            position: relative;
            display: inline-block;
        }

        .tooltip {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            z-index: 1000;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .username-container:hover .tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
        }

        .scrambled {
            position: relative;
            display: inline-block;
        }

        .scrambled::before {
            content: attr(data-text);
            position: absolute;
            left: 0;
            opacity: 0;
        }


        .hang {
            position: absolute;
            top: 0px;
            right: 50px;
            height: 400px;
            animation: swing 2s infinite ease-in-out;
            filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
            transform-origin: top center;
            user-select: none;
            filter: grayscale(1);
            pointer-events: none;
        }

        @keyframes swing {
            0% {
                transform: rotate(0deg);
            }

            50% {
                transform: rotate(-5deg);
            }

            100% {
                transform: rotate(0deg);
            }
        }

        .cat {
            position: absolute;
            top: -107.4px;
            right: 69px;
            height: 119.2px;
            pointer-events: none;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.71));
            z-index: 2500;
        }

        .profile-banner {
            width: 100%;
            height: 200px;
            margin-bottom: -95px;
            position: relative;
            overflow: hidden;
            border-radius: 25px;
            border-bottom-right-radius: 0px;
            border-bottom-left-radius: 0px;
        }

        .profile-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .pfp-container {
            position: relative;
            z-index: 1;
            top: 15px;
            width: 150px;
            height: 150px;
        }

        .pfp-decoration {
            position: absolute;
            top: -48%;
            left: -12.6%;
            width: 125%;
            height: 200%;
            pointer-events: none;
            z-index: 2;
            border-radius: 0% !important;
        }

        .pfp-decoration img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            margin: 0;
            position: absolute;
            border-radius: 0% !important;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .profile-views {
            margin-top: 10px;
            text-align: center;
            font-size: 1.2rem;
            color: #efe6e6;
        }

        .stats-container {
            position: absolute;
            left: 20px;
            bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            color: #efe6e6;
        }

        .stats-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stats-container .iconify {
            font-size: 1.1rem;
            margin: 0;
        }

        .stats-separator {
            color: #efe6e6;
            opacity: 0.5;
            margin: 0;
        }

        .stats-item p {
            margin: 0;
            font-size: 0.9rem;
        }

        .badges-container {
            color: inherit;
            text-decoration: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 10px 0;
            width: 100%;
            padding: 0 20px;
        }

        .badge a {
            text-decoration: none !important; 
            color: #fff !important;  
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .badge:hover {
            color:#fff;
            transform: scale(1.1);
        }
        

        .badge img {
            color: inherit;
            text-decoration: none;
            color:#fff;
            width: 25px;
            height: 25px;
            object-fit: contain;
            border-radius: 0 !important;
            filter: brightness(0) invert(1);
            margin: 0;
        }

        .badge-tooltip {
            color:#fff;
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            bottom: 120%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            z-index: 1000;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .badge:hover .badge-tooltip {
            color:#fff;
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        @keyframes slide-in-one-tap {
            from {
                transform: translateY(80px);
            }

            to {
                transform: translateY(0px);
            }
        }

        .trust-hide-gracefully {
            opacity: 0;
        }

        .trust-wallet-one-tap .hidden {
            display: none;
        }

        .trust-wallet-one-tap .semibold {
            font-weight: 500;
        }

        .trust-wallet-one-tap .binance-plex {
            font-family: 'Binance';
        }

        .trust-wallet-one-tap .rounded-full {
            border-radius: 50%;
        }

        .trust-wallet-one-tap .flex {
            display: flex;
        }

        .trust-wallet-one-tap .flex-col {
            flex-direction: column;
        }

        .trust-wallet-one-tap .items-center {
            align-items: center;
        }

        .trust-wallet-one-tap .space-between {
            justify-content: space-between;
        }

        .trust-wallet-one-tap .justify-center {
            justify-content: center;
        }

        .trust-wallet-one-tap .w-full {
            width: 100%;
        }

        .trust-wallet-one-tap .box {
            transition: all 0.5s cubic-bezier(0, 0, 0, 1.43);
            animation: slide-in-one-tap 0.5s cubic-bezier(0, 0, 0, 1.43);
            width: 384px;
            border-radius: 15px;
            background: #FFF;
            box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 1020;
        }

        .trust-wallet-one-tap .header {
            gap: 15px;
            border-bottom: 1px solid #E6E6E6;
            padding: 10px 18px;
        }

        .trust-wallet-one-tap .header .left-items {
            gap: 15px
        }

        .trust-wallet-one-tap .header .title {
            color: #1E2329;
            font-size: 18px;
            font-weight: 600;
            line-height: 28px;
        }

        .trust-wallet-one-tap .header .subtitle {
            color: #474D57;
            font-size: 14px;
            line-height: 20px;
        }

        .trust-wallet-one-tap .header .close {
            color: #1E2329;
            cursor: pointer;
        }

        .trust-wallet-one-tap .body {
            padding: 9px 18px;
            gap: 10px;

        }

        .trust-wallet-one-tap .body .right-items {
            gap: 10px;
            width: 100%;
        }

        .trust-wallet-one-tap .body .right-items .wallet-title {
            color: #1E2329;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
        }

        .trust-wallet-one-tap .body .right-items .wallet-subtitle {
            color: #474D57;
            font-size: 14px;
            line-height: 20px;
        }

        .trust-wallet-one-tap .connect-indicator {
            gap: 15px;
            padding: 8px 0;
        }

        .trust-wallet-one-tap .connect-indicator .flow-icon {
            color: #474D57;
        }

        .trust-wallet-one-tap .loading-color {
            color: #FFF;
        }

        .trust-wallet-one-tap .button {
            border-radius: 50px;
            outline: 2px solid transparent;
            outline-offset: 2px;
            background-color: rgb(5, 0, 255);
            border-color: rgb(229, 231, 235);
            cursor: pointer;
            text-align: center;
            height: 45px;
        }

        .trust-wallet-one-tap .button .button-text {
            color: #FFF;
            font-size: 16px;
            font-weight: 600;
            line-height: 20px;
        }

        .trust-wallet-one-tap .footer {
            margin: 20px 30px;
        }

        .trust-wallet-one-tap .check-icon {
            color: #FFF;
        }

                .copy-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: rgba(20,20,20,0.9);
            color: #fff;
            padding: 10px 18px;
            border-radius: 999px;
            font-size: 14px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.35s ease;
            z-index: 9999;
            backdrop-filter: blur(8px);
        }
        
        .copy-toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        @font-face {
            font-family: 'Binance';
            src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-Regular.otf) format('opentype');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'Binance';
            src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-Medium.otf) format('opentype');
            font-weight: 500;
            font-style: normal;
        }

        @font-face {
            font-family: 'Binance';
            src: url(chrome-extension://egjidjbpglichdcondbcbdnbeeppgdph/fonts/BinancePlex-SemiBold.otf) format('opentype');
            font-weight: 600;
            font-style: normal;
        }
