* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --glass-bg: rgba(15, 15, 25, 0.75);
            --glass-border: rgba(255, 255, 255, 0.12);
            --accent: #00ffff;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
        }

        body {
            font-family: 'Cascadia Code', monospace;
            color: var(--text-primary);
            overflow-x: hidden;
            background: #000;
        }

        #video-bg {
            position: fixed;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -1;
            opacity: 0.3;
            object-fit: cover;
        }

        @media (aspect-ratio: 16/9) {
            #video-bg {
                width: 100%;
                height: auto;
            }
        }

        @media (aspect-ratio: 21/9) {
            #video-bg {
                width: 100%;
                height: auto;
            }
        }

        @media (max-aspect-ratio: 9/16) {
            #video-bg {
                width: auto;
                height: 100%;
            }
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            z-index: -1;
        }

        .container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .bio-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 3rem 2.5rem;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .profile-section {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .profile-image {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            image-rendering: auto;
            image-rendering: -webkit-optimize-contrast;
            -webkit-backface-visibility: hidden;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        h1 {
            font-family: Arial, sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .tagline {
            font-size: 1.1rem;
            color: var(--text-secondary);
            font-family: Arial, sans-serif;
            font-style: italic;
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .social-btn svg {
            width: 40px;
            height: 40px;
            transition: all 0.3s ease;
        }

        .social-btn.discord svg {
            fill: #5865F2;
        }

        .social-btn.discord:hover svg {
            fill: #7289da;
            transform: scale(1.1);
        }

        .social-btn.youtube svg {
            fill: #FF0000;
        }

        .social-btn.youtube:hover svg {
            fill: #ff3333;
            transform: scale(1.1);
        }

        .social-btn.github svg {
            fill: #ffffff;
        }

        .social-btn.github:hover svg {
            fill: #cccccc;
            transform: scale(1.1);
        }

        .audio-control {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            width: 60px;
            height: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 10px;
            gap: 0.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: height 0.3s ease, padding 0.3s ease;
            overflow: hidden;
        }

        .audio-control:hover {
            height: 200px;
            padding: 15px 10px 10px 10px;
        }

        .audio-toggle-btn {
            min-width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
        }

        .volume-slider {
            height: 0;
            opacity: 0;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: height 0.3s ease, opacity 0.3s ease;
            width: 100%;
        }

        .audio-control:hover .volume-slider {
            opacity: 1;
            height: 110px;
        }

        .audio-control svg {
            width: 24px;
            height: 24px;
            fill: var(--text-primary);
            transition: fill 0.3s ease;
        }

        .audio-toggle-btn:hover svg {
            fill: var(--accent);
        }

        .audio-control.playing svg {
            animation: pulse 1.5s ease-in-out infinite;
        }

        .volume-slider input[type="range"] {
            width: 110px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            outline: none;
            -webkit-appearance: none;
            transform: rotate(-90deg);
            transform-origin: center;
        }

        .volume-slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 14px;
            height: 14px;
            background: var(--accent);
            border-radius: 50%;
            cursor: pointer;
        }

        .volume-slider input[type="range"]::-moz-range-thumb {
            width: 14px;
            height: 14px;
            background: var(--accent);
            border-radius: 50%;
            cursor: pointer;
            border: none;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.6;
            }
        }

        .enter-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            cursor: pointer;
        }

        .enter-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .enter-text {
            font-family: Arial, sans-serif;
            font-size: 2.5rem;
            white-space: nowrap;
        }

        .function-name {
            color: #61dafb;
        }

        .syntax {
            color: #ffffff;
        }

        @media (max-width: 600px) {
            .bio-card {
                padding: 2rem 1.5rem;
                max-width: 90%;
            }

            h1 {
                font-size: 1.5rem;
            }

            .tagline {
                font-size: 0.9rem;
            }

            .social-links {
                flex-direction: row;
                gap: 1.5rem;
            }

            .social-btn {
                width: 35px;
                height: 35px;
            }

            .social-btn svg {
                width: 35px;
                height: 35px;
            }

            .profile-image {
                width: 100px;
                height: 100px;
            }

            .enter-text {
                font-size: 1.5rem;
            }

            .audio-control {
                bottom: 1rem;
                right: 1rem;
                width: 50px;
                height: 50px;
            }

            .audio-control:hover {
                height: 170px;
            }

            .audio-toggle-btn {
                min-width: 30px;
                height: 30px;
            }

            .audio-control svg {
                width: 20px;
                height: 20px;
            }

            .volume-slider input[type="range"] {
                width: 90px;
            }

            .audio-control:hover .volume-slider {
                height: 90px;
            }
        }

        @media (min-width: 601px) and (max-width: 1024px) {
            .bio-card {
                max-width: 450px;
                padding: 2.5rem 2rem;
            }

            h1 {
                font-size: 1.8rem;
            }

            .profile-image {
                width: 120px;
                height: 120px;
            }

            .social-btn {
                width: 38px;
                height: 38px;
            }

            .social-btn svg {
                width: 38px;
                height: 38px;
            }
        }

        @media (min-width: 1025px) and (max-width: 1440px) {
            .bio-card {
                max-width: 480px;
            }
        }

        @media (min-width: 1441px) {
            .bio-card {
                max-width: 520px;
            }

            h1 {
                font-size: 2.2rem;
            }

            .tagline {
                font-size: 1.2rem;
            }
        }

        @media (max-height: 700px) {
            .bio-card {
                padding: 2rem 2rem;
            }

            .profile-image {
                width: 100px;
                height: 100px;
                margin-bottom: 1rem;
            }

            h1 {
                font-size: 1.6rem;
                margin-bottom: 0.3rem;
            }

            .tagline {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .social-links {
                gap: 1.5rem;
            }
        }

        @media (orientation: landscape) and (max-height: 500px) {
            .container {
                padding: 1rem;
            }

            .bio-card {
                padding: 1.5rem 2rem;
            }

            .profile-image {
                width: 80px;
                height: 80px;
                margin-bottom: 0.5rem;
            }

            h1 {
                font-size: 1.3rem;
                margin-bottom: 0.2rem;
            }

            .tagline {
                font-size: 0.85rem;
                margin-bottom: 1rem;
            }

            .social-btn {
                width: 32px;
                height: 32px;
            }

            .social-btn svg {
                width: 32px;
                height: 32px;
            }

            .audio-control {
                bottom: 1rem;
                right: 1rem;
            }
        }