
        :root {
            --primary-bg: #000;
            --primary-text: #fff;
            --border-color: #fff;
            --border-radius: 12px;
            --border-radius-small: 8px;
            --border-width: 1px;
            --transition: all 0.3s ease;
        }

        @font-face {
            font-family: 'Moscow Sans';
            src: url('fonts/MOSCOWSANSREGULAR.woff2') format('woff2'),
                url('fonts/MOSCOWSANSREGULAR.TTF') format('truetype');
            font-style: normal;
            font-display: swap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Moscow Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--primary-text);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            padding: 20px;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .main-content {
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        .title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }

        .blin-inline {
            display: inline-block;
            width: 1em;
            height: 1em;
            vertical-align: middle;
            margin-left: 8px;
            filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.4));
            transform: translateY(-2px);
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            pointer-events: none;
        }

        .subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.8s;
            color: #ccc;
        }

        .typing-text {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            border-right: 2px solid #fff;
            animation: typing 2.5s ease-in-out forwards, blink-caret 0.75s step-end infinite;
            width: 0;
            box-sizing: content-box;
            animation-fill-mode: forwards;
        }

        .footer {
            margin-top: 80px;
            font-size: 0.9rem;
            color: #888;
            opacity: 0;
            animation: fadeIn 1s forwards 1.4s;
            text-align: center;
            padding: 20px;
            border-top: var(--border-width) solid rgba(255, 255, 255, 0.05);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .footer-contact {
            outline: none;
            display: inline-block;
            color: #888;
            font-size: 0.9rem;
            text-decoration: none;
            margin-top: 10px;
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-small);
            transition: var(--transition);
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
        }

        .footer-contact:hover {
            outline: none;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #fff }
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes blinAppear {
            from {
                opacity: 0;
                transform: translateY(-2px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(-2px) scale(1);
            }
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .blin-inline {
                width: 1em;
                height: 1em;
                margin-left: 6px;
            }
            
            .main-content {
                padding: 20px 10px;
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .blin-inline {
                width: 0.9em;
                height: 0.9em;
                margin-left: 4px;
            }
            
            .main-content {
                padding: 20px 10px;
            }
        }
    
