
        body { 
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
            background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0.9) 50%);
        }
        iframe{
            width: 100%;
            height: 100%;
        }           
        .mt-4.iframe-container {
            width: 100%;
            height: calc(100vh);
        }

        .glass { 
            backdrop-filter: blur(20px) saturate(180%);
            background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .neural-glass {
            backdrop-filter: blur(15px) saturate(200%);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.05));
            border: 1px solid rgba(139, 92, 246, 0.2);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
        }
        .shimmer { 
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
        }
        .neural-grid {
            background-image: radial-gradient(circle at 25px 25px, rgba(139, 92, 246, 0.2) 2px, transparent 0),
                            radial-gradient(circle at 75px 75px, rgba(34, 211, 238, 0.1) 1px, transparent 0);
            background-size: 100px 100px;
            animation: neural 8s ease-in-out infinite;
        }
        .memory-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: linear-gradient(45deg, #8b5cf6, #22d3ee);
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
            opacity: 0.6;
        }
        .hologram-text {
            background: linear-gradient(135deg, #8b5cf6, #22d3ee, #f97316);
            background-size: 200% 200%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite alternate;
        }
        #avatar-slot { 
            position: relative; 
            width: 100%; 
            height: calc(100vh);
            overflow: hidden;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.1));
        }
        #avatar {
            height: calc(100vh);
            width: calc(100vw);
            border-radius: 20px;
        }
        #avatar-preview {
            height: calc(100vh);
            width: 100%;
            border-radius: 20px;
        }
        .experience-orb {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(34, 211, 238, 0.3));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: float 5s ease-in-out infinite;
        }
        @media (min-width: 480px) {
            #avatar {
            height: calc(100%);
                width: auto;
            }
            


        }