
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            user-select: none; 
        }

        body {
            background: #0a0a0a;
            color: #fff;
            overflow: hidden;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            -webkit-tap-highlight-color: transparent;
        }

        
        body::selection {
            background: rgba(76, 201, 240, 0.3);
        }

        
        .no-context-menu {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .container {
            width: 100%;
            max-width: 800px;
            height: 95vh;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            margin: 20px;
        }

        
        .screen {
            position: absolute;
            top: 35px;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 20px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            opacity: 0;
            pointer-events: none;
            transform: translateX(30px);
        }

        .screen.active {
            opacity: 1;
            pointer-events: all;
            transform: translateX(0);
        }

        
        .status-bar {
            display: flex;
            justify-content: space-between;
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 24px 24px 0 0;
            font-size: 14px;
            font-weight: 500;
        }

        .time {
            font-weight: 600;
        }

        .status-icons i {
            margin-left: 8px;
        }

        
        .android-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(20, 20, 35, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 0;
            z-index: 100;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .android-footer.active {
            display: flex;
        }

        
        .nav-buttons {
            display: flex;
            justify-content: space-around;
            width: 100%;
            max-width: 400px;
            padding: 0 20px;
        }

        .nav-button {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            padding: 8px 12px;
            border-radius: 8px;
            min-width: 60px;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #4cc9f0;
        }

        .nav-button i {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .nav-button.active {
            color: #4cc9f0;
        }

        
        .android-back-btn {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.15);
            border: none;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 99;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .android-back-btn.active {
            display: flex;
        }

        .android-back-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(-50%) scale(1.1);
        }

        
        #screen1 {
            background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 10;
            transform: scale(1);
			padding-bottom: 150px;
			
        }

        #screen1.active {
            transform: scale(1);
        }

        .logo {
            width: 120px;
            height: 120px;
         
            border-radius: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            opacity: 0;
            transform: scale(0.8);
            animation: logoAppear 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
          
        }

        .logo i {
            font-size: 60px;
            color: white;
        }

        @keyframes logoAppear {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .loading-text {
            font-size: 21px;
            text-align: center;
            line-height: 1.8;
            max-width: 600px;
            opacity: 0;
			color: #00b146;
            animation: textAppear 0.8s ease-out 1.8s forwards;
        }

        @keyframes textAppear {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loading-text span {
            display: inline-block;
           
            transform: translateY(10px);
        }

        .loading-text span:nth-child(1) { animation: fadeInUp 0.5s ease-out 1s forwards; }
        .loading-text span:nth-child(2) { animation: fadeInUp 0.5s ease-out 1.3s forwards; }
        .loading-text span:nth-child(3) { animation: fadeInUp 0.5s ease-out 1.3s forwards; }
        .loading-text span:nth-child(4) { animation: fadeInUp 0.5s ease-out 1.3s forwards; }
		.loading-text span:nth-child(5) { animation: fadeInUp 0.5s ease-out 1.3s forwards; }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 20px;
            padding: 30px 20px;
            
        }

        .app-button {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            padding: 20px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .app-button:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .app-button i {
            font-size: 36px;
            margin-bottom: 12px;
            color: #4cc9f0;
        }

        .app-button span {
            font-size: 16px;
            font-weight: 500;
            text-align: center;
        }

        
        .content-screen .content-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .content-header h2 {
            font-size: 28px;
            font-weight: 700;
            margin-left: 15px;
            background: linear-gradient(90deg, #4cc9f0, #4361ee);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .content-body {
            flex-grow: 1;
            padding: 10px 5px;
            line-height: 1.6;
            font-size: 17px;
            margin-bottom: 80px; 
        }

        
        .chat-container {
            display: flex;
            flex-direction: column;
            height: 100%;
            padding-bottom: 140px; 
        }

        .chat-messages {
            flex-grow: 1;
            overflow-y: auto;
            padding: 15px;
            margin-bottom: 20px;
        }

        .message {
            max-width: 80%;
            padding: 12px 18px;
            border-radius: 18px;
            margin-bottom: 15px;
            position: relative;
            animation: messageAppear 0.3s ease-out;
        }

        @keyframes messageAppear {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message.system {
            background: rgba(76, 201, 240, 0.15);
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }

        .message.user {
            background: rgba(67, 97, 238, 0.2);
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }

        .message-header {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 14px;
            color: #4cc9f0;
        }

        .message-content {
            font-size: 16px;
        }

        .message-time {
            font-size: 12px;
            opacity: 0.7;
            text-align: right;
            margin-top: 5px;
        }

        .chat-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 18px;
            margin-top: auto;
        }

        .form-group {
            margin-bottom: 5px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #aaa;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            color: white;
            font-size: 16px;
            transition: border 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #4cc9f0;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .btn {
            background: linear-gradient(90deg, #4cc9f0, #4361ee);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 10px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
        }

        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(0, 200, 83, 0.9);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transform: translateX(150%);
            transition: transform 0.4s ease;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification.error {
            background: rgba(244, 67, 54, 0.9);
        }

        
        .protection-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
            padding: 20px;
            text-align: center;
        }

        .protection-overlay h2 {
            color: #ff4444;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .protection-overlay p {
            color: #fff;
            margin-bottom: 30px;
            max-width: 600px;
            line-height: 1.6;
        }
		
		
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4cc9f0, #4361ee);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #5cd5ff, #5375ff);
}


* {
    scrollbar-width: thin;
    scrollbar-color: #4cc9f0 rgba(255, 255, 255, 0.05);
}


.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(76, 201, 240, 0.1);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #4cc9f0;
}


.content-body::-webkit-scrollbar {
    width: 6px;
}


.screen:not(.chat-messages)::-webkit-scrollbar {
    opacity: 0;
    transition: opacity 0.3s;
}

.screen:hover::-webkit-scrollbar {
    opacity: 1;
}

        
        @media (max-width: 768px) {
            .container {
                height: 100vh;
                border-radius: 0;
                margin: 0;
            }
            
            .app-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
                padding: 20px 15px;
            }
            
            .app-button {
                padding: 15px 8px;
                border-radius: 16px;
            }
            
            .app-button i {
                font-size: 32px;
            }
            
            .app-button span {
                font-size: 14px;
            }
            
            .content-header h2 {
                font-size: 24px;
            }
            
            .content-body {
                font-size: 16px;
                margin-bottom: 120px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .message {
                max-width: 90%;
            }
            
            .android-back-btn {
                bottom: 70px;
            }
            
            .nav-buttons {
                padding: 0 10px;
            }
            
            .nav-button {
                min-width: 50px;
                font-size: 10px;
                padding: 6px 8px;
            }
            
            .nav-button i {
                font-size: 18px;
            }
			
			    .chat-messages {
          
           padding: 5px;
          
           }
		   
		    .message-content {
            font-size: 12px;
        }
        }

        @media (max-width: 480px) {
            .app-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .status-bar {
                font-size: 12px;
                padding: 8px 15px;
            }
            
            .loading-text {
                font-size: 16px;
            }
            
            .android-back-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
                bottom: 65px;
            }
            
            .content-body {
                margin-bottom: 110px;
            }
			.chat-messages {
          
           padding: 5px;
          
           }
		   .message-content {
            font-size: 12px;
        }
        }

        
        @keyframes buttonAppear {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        
        @media print {
            .container {
                display: none;
            }
            
            body::after {
                content: "Контент защищен от копирования. Посетите сайт для просмотра.";
                display: block;
                text-align: center;
                padding: 50px;
                font-size: 24px;
                color: #333;
            }
        }
    