
        :root {  

            --primary-color: #34e0ff;  

            --secondary-color: #07b3ff;  

            --accent-color: #00ffff;

            --text-primary: #ffffff;

            --text-secondary: #34e0ff;

            --surface: rgba(52, 224, 255, 0.15);  

            --surface-hover: rgba(52, 224, 255, 0.25); 

            --border: rgba(52, 224, 255, 0.3);

            --shadow: 0 8px 32px 0 rgba(52, 224, 255, 0.2);  

            --backdrop-blur: blur(8px); 

        } 



        * { 

            margin: 0;  

            padding: 0;          

            box-sizing: border-box;  

        }

        body {  

            font-family: 'Inter', sans-serif; 

            background: 
                radial-gradient(120vw 120vh at 50% 55%, rgba(30,90,160,.26), transparent 60%),
                radial-gradient(80vw 60vh at 60% 30%, rgba(30,120,200,.16), transparent 55%),
                linear-gradient(#0000,#0004),
                #07101c;
            background-color: #03060b;

            min-height: 100vh; 

            display: flex;  

            align-items: flex-start;  

            justify-content: center;

            padding: 40px 20px 60px 20px;

            position: relative;  

         

        }  

 

        /* Animated background elements */  

        body::before {

            content: '';  

            position: fixed; 

            top: -50%;

            left: -50%;

            width: 200%;

            height: 200%;

            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);

            background-size: 50px 50px;

            /* animation: float 20s linear infinite; */

            z-index: -1; 

        } 

 

        body::after {  

            content: '';  

            position: fixed;  

            top: 0;  

            left: 0;  

            width: 100%;   

            height: 100%; 

            background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);

            animation: slide 15s ease-in-out infinite;

            z-index: -1; 

        }        

           

        @keyframes float {          

            0% { transform: translate(0px, 0px) rotate(0deg); }       

            33% { transform: translate(30px, -30px) rotate(120deg); }    

            66% { transform: translate(-20px, 20px) rotate(240deg); }

            100% { transform: translate(0px, 0px) rotate(360deg); }      

        }          
        @keyframes slide {

            0%, 100% { transform: translateX(-100%); }    

            50% { transform: translateX(100%); }          

        }             

            


        .linktree-container {        

            max-width: 480px;        

            width: 100%;             

            background: var(--surface);   

            backdrop-filter: var(--backdrop-blur);   

            border-radius: 20px;           

            border: 1px solid var(--border);     

            box-shadow: 
                var(--shadow),
                0 0 20px rgba(52, 224, 255, 0.3),
                inset 0 0 20px rgba(52, 224, 255, 0.1);

            padding: 40px 30px;         

            position: relative;

            margin: 0 auto;         

            animation: fadeInUp 0.8s ease-out;       

        }     

        @keyframes fadeInUp {            

            from {                    

                opacity: 0;                

                transform: translateY(30px);            

            }

            to {           

                opacity: 1;   

                transform: translateY(0);

            }       

        }

        /* Profile Section */

        .profile-section {        

            text-align: center;     

            margin-bottom: 40px;   

        }


        .avatar {

            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(52, 224, 255, 0.5);
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.15),
                0 0 30px rgba(52, 224, 255, 0.4);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .avatar:hover {
            transform: scale(1.05);
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.15),
                0 0 40px rgba(52, 224, 255, 0.6),
                0 0 60px rgba(52, 224, 255, 0.3);
            border-color: rgba(52, 224, 255, 0.8);
        }

        .profile-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.1),
                0 0 10px rgba(52, 224, 255, 0.6),
                0 0 20px rgba(52, 224, 255, 0.3);
        }

        .profile-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* Links Container */
        .links-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .link-item {
            display: flex;
            align-items: center;
            padding: 18px 24px;
            background: var(--surface);
            backdrop-filter: var(--backdrop-blur);
            border: 1px solid var(--border);
            border-radius: 16px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .link-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .link-item:hover::before {
            left: 100%;
        }

        .link-item:hover {
            background: var(--surface-hover);
            transform: translateY(-2px);
            box-shadow: 
                0 12px 24px rgba(0, 0, 0, 0.15),
                0 0 15px rgba(52, 224, 255, 0.4),
                inset 0 0 15px rgba(52, 224, 255, 0.1);
            border-color: var(--primary-color);
        }

        .link-icon {
            width: 24px;
            height: 24px;
            margin-right: 16px;
            flex-shrink: 0;
        }

        .link-text {
            flex: 1;
            text-align: left;
        }

        /* Social Section */
        .social-section {
            text-align: center;
            margin-bottom: 30px;
        }

        .social-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--surface);
            backdrop-filter: var(--backdrop-blur);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--surface-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .social-icon {
            width: 24px;
            height: 24px;
        }

        /* Footer */
        .footer {
            text-align: center;
            font-size: 12px;
            color: var(--text-secondary);
            opacity: 0.7;
        }

        .footer a {
            color: inherit;
            text-decoration: none;
            font-weight: 500;
        }

        .footer a:hover {
            opacity: 1;
        }

        /* Desktop-first approach */
        @media (min-width: 1024px) {
            body {
                padding: 30px 40px 80px 40px;
            }
            
            .linktree-container {
                max-width: 420px;
                padding: 50px 40px;
                margin-top: 10px;
            }
        }

        /* Tablet adjustments */
        @media (max-width: 1023px) and (min-width: 768px) {
            body {
                padding: 25px 30px 60px 30px;
               
            }
            
            .linktree-container {
                max-width: 450px;
                margin-top: 10px;
            }
        }

            /* Tablet single-page no-scroll */
            @media (max-width: 1023px) and (min-width: 768px) {
                body {
                    height: 100vh;
                    padding: 0;
                    margin: 0;
                    overflow: hidden;
                }
                .linktree-container {
                    height: 100vh;
                    max-width: 450px;
                    margin: 0 auto;
                    padding: 0 10px;
                    overflow: hidden;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                }
            }

        /* Mobile design */
        @media (max-width: 767px) {
            body {
                padding: 15px 15px 40px 15px;
         
            }
            
            .linktree-container {
                margin: 5px auto 0 auto;
                padding: 30px 25px;
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            body {
                padding: 10px 10px 30px 10px;
            }
            
            .linktree-container {
                margin: 5px auto 0 auto;
                padding: 25px 20px;
            }

            .avatar {
                width: 100px;
                height: 100px;
            }

            .profile-title {
                font-size: 24px;
            }

            .link-item {
                padding: 16px 20px;
                font-size: 15px;
            }

            .social-links {
                gap: 16px;
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            :root {
                --text-primary: #f7fafc;
                --text-secondary: #e2e8f0;
                --surface: rgba(0, 0, 0, 0.25);
                --surface-hover: rgba(0, 0, 0, 0.35);
                --border: rgba(255, 255, 255, 0.1);
            }
        }

        /* Matrix effect overrides */
        .col {
            position: fixed !important;
            top: 0;
            width: 2rem !important;
            height: 100vh;
            pointer-events: none;
            z-index: -5;
            font-family: 'Courier New', monospace !important;
        }

        .stream {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            writing-mode: vertical-rl;
            text-orientation: upright;
            white-space: pre;
            line-height: 1.2;
            color: #34e0ff !important;
            text-shadow: 
                0 0 5px #34e0ff,
                0 0 10px #34e0ff,
                0 0 15px #34e0ff !important;
            filter: drop-shadow(0 0 3px #34e0ff);
        }

        @keyframes descend {
            0% { 
                transform: translateY(-100vh) translateX(var(--dx, 0px));
                opacity: 0;
            }
            10% { 
                opacity: 1;
            }
            90% { 
                opacity: 1;
            }
            100% { 
                transform: translateY(100vh) translateX(var(--dx, 0px));
                opacity: 0;
            }
        }
