 body .huy {
            padding-top: 64px;
            background: #ffffff;
            width: calc(100vw - 8px);
            height: max-content;
            min-height: calc(100vh - 8px);
            position: relative;
        }
        
        body .zalupa {
            background: #09ff00a0;
            width: 100vw;
            height: 64px;
            position: fixed;
            top: 0;
            left: 0;
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: flex;
            align-items: center;
            padding: 0 20px;
            border-bottom: 3px solid #000;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff0000;
            text-shadow: 2px 2px 0 #000;
            animation: glitch 0.5s infinite;
        }
        
        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }
        
        .nav-links {
            margin-left: auto;
            display: flex;
            gap: 20px;
        }
        
        .nav-links a {
            color: #000;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 15px;
            background: #ff00ff;
            border-radius: 5px;
            border: 2px solid #000;
            transition: all 0.3s;
        }
        
        .nav-links a:hover {
            background: #00ffff;
            transform: scale(1.1);
        }
        
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero {
            text-align: center;
            margin: 40px 0;
            padding: 40px;
            background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
            border: 5px dashed #000;
            border-radius: 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            color: #fff;
            text-shadow: 3px 3px 0 #000;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 24px;
            color: #000;
            background: #fff;
            display: inline-block;
            padding: 10px 20px;
            border-radius: 10px;
        }
        
        .video-section {
            background: #000;
            padding: 20px;
            border-radius: 15px;
            margin: 40px 0;
            border: 5px solid #ff0000;
        }
        
        video {
            width: 100%;
            max-width: 800px;
            height: auto;
            display: block;
            margin: 0 auto;
            border: 3px solid #09ff00;
            border-radius: 10px;
        }
        
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .service-card {
            background: #09ff00;
            border: 3px solid #000;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: rotate(5deg) scale(1.05);
            background: #ff00ff;
        }
        
        .service-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #000;
        }
        
        .service-card p {
            color: #333;
        }
        
        .robox-form {
            background: #000;
            color: #09ff00;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            border: 3px solid #ff0000;
        }
        
        .robox-form h2 {
            font-size: 32px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .robox-form input {
            padding: 15px;
            font-size: 18px;
            width: 80%;
            max-width: 400px;
            border: 3px solid #09ff00;
            border-radius: 10px;
            background: #000;
            color: #fff;
            text-align: center;
        }
        
        .submit-btn {
            background: #ff0000;
            color: #fff;
            border: none;
            padding: 15px 40px;
            font-size: 20px;
            border-radius: 10px;
            cursor: pointer;
            margin-top: 20px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background: #09ff00;
            color: #000;
            transform: scale(1.1);
        }
        
        .hack-status {
            background: #000;
            color: #09ff00;
            padding: 20px;
            margin: 20px 0;
            border: 2px solid #ff0000;
            border-radius: 10px;
            font-family: monospace;
            display: none;
        }
        
        .status-line {
            margin: 10px 0;
        }
        
        .blink {
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        .warning {
            background: #ff0000;
            color: #fff;
            padding: 20px;
            margin: 40px 0;
            border-radius: 10px;
            text-align: center;
            font-size: 18px;
            border: 3px solid #000;
        }
        
        .matrix {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            /*opacity: 0.1;*/
        }
        
        .footer {
            background: #000;
            color: #09ff00;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
            border-top: 5px solid #ff0000;
        }
        
        .footer p {
            margin: 10px 0;
            font-size: 14px;
        }
        
        .counter {
            position: fixed;
            bottom: 10px;
            right: 10px;
            background: #000;
            color: #09ff00;
            padding: 10px;
            border: 2px solid #ff0000;
            border-radius: 5px;
            font-family: monospace;
            z-index: 1000;
        }
        
        .nuke-btn {
            position: fixed;
            bottom: 10px;
            left: 10px;
            background: #ff0000;
            color: #fff;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 10px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .error {
            color: #ff0000;
            font-weight: bold;
            margin-top: 10px;
            display: none;
        }
        
        .scare-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 99999;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        .scare-popup img {
            max-width: 90%;
            max-height: 90%;
            border: 5px solid #ff0000;
        }