
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
body {
  --sb-track-color: #2f2f2f;
  --sb-thumb-color: #ffa500;
  --sb-size: 5px;
}

*::-webkit-scrollbar {
  width: var(--sb-size)
}

*::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 5px;
  
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}
        body {
            font-family: VT323, monospace;
            font-size: 25px;
            padding: 20px;
            color: #ffd700;
            position: relative;
            overflow-x: hidden;
            margin-top: 20  px;
            background: 
                repeating-linear-gradient(
                    45deg,
                    #000000bb 0px,
                    #000000 0.5px,
                    rgba(0, 0, 0, 0.1)0.5px,
                    rgba(255, 165, 0, 0.1) 0.5px
                );
        }

        /* CRT Effect Overlays */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                transparent 0px,
                rgba(0, 0, 0, 0.05) 1px,
                transparent 2px
            );
            pointer-events: none;
            z-index: 1000;
        }

        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at center,
                transparent 0,
                rgba(0, 0, 0, 0.2) 90%,
                rgba(0, 0, 0, 0.4) 100%
            );
            pointer-events: none;
            z-index: 1001;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .block {
            background: rgba(0, 0, 0, 0.9);
            border: 2px solid #ffa500;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 
                0 0 20px rgba(255, 165, 0, 0.3),
                0 0 40px rgba(255, 0, 255, 0.1),
                inset 0 0 15px rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent,
                #ffa500,
                #ff00ff,
                #00ffff,
                transparent
            );
            animation: scanline 2s linear infinite;
        }

        .block::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.1) 0px,
                rgba(255, 255, 255, 0.05) 1px,
                transparent 2px
            );
            pointer-events: none;
        }

        .terminal-block {
            grid-column: span 2;
            min-height: 400px;
        }

        .cart-block {
            grid-column: span 2;
            grid-row: span 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        #terminal-output {
            height: 300px;
            overflow-y: auto;
            margin-bottom: 10px;
            padding: 10px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 5px;
            font-size: 18px;
            line-height: 1.4;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
        }

        .terminal-input {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 5px;
            border: 1px solid rgba(255, 165, 0, 0.3);
        }

        .terminal-input input {
            background: transparent;
            border: none;
            color: #ffd700;
            font-family: 'Courier New', monospace;
            font-size: 16px;
            flex: 1;
            outline: none;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
        }

        .menu-buttons {
            
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .info-block {
            grid-column: span 2;
            font-size: 0.9em;
        }

        .retro-button {
            background: linear-gradient(
                45deg,
                rgba(255, 165, 0, 0.1),
                rgba(255, 0, 255, 0.1)
            );
            border: 2px solid #ffa500;
            color: #ffd700;
            padding: 10px;
            height: 50px;
            cursor: pointer;
            text-transform: uppercase;
            font-family: 'Courier New', monospace;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 120px;
            position: relative;
            overflow: hidden;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
        }

        .retro-button:hover {
            background: linear-gradient(
                45deg,
                rgba(255, 165, 0, 0.2),
                rgba(255, 0, 255, 0.2)
            );
            transform: translateY(-2px);
            box-shadow: 
                0 0 15px rgba(255, 165, 0, 0.5),
                0 0 30px rgba(255, 0, 255, 0.3);
        }
        .pay{
            flex: none;
        }
        .menu-item {
            border: 1px solid #ffa500;
            margin: 10px 0;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(
                45deg,
                rgba(255, 165, 0, 0.1),
                rgba(0, 255, 255, 0.1)
            );
        }

        .menu-item:hover {
            background: linear-gradient(
                45deg,
                rgba(255, 165, 0, 0.2),
                rgba(0, 255, 255, 0.2)
            );
            transform: translateX(5px);
        }

        .title {
            text-align: center;
            margin-bottom: 15px;
            font-size: 1.2em;
            text-shadow: 
                0 0 5px #ffa500,
                0 0 10px #ff00ff,
                0 0 15px #00ffff;
            color: #fff;
            letter-spacing: 2px;
        }

        .cart-content {
            flex: 1;
            overflow-y: auto;
overflow-x:hidden;
            margin-bottom: 10px;
        }

        .cart-total {
            border-top: 2px solid #ffa500;
            padding-top: 10px;
            margin-top: 10px;
            text-align: right;
        }

        #notifications {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .notification {
            background: rgba(255, 165, 0, 0.9);
            color: black;
            padding: 10px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from { transform: translateX(100%); }
            to { transform: translateX(0); }
        }

        @keyframes scanline {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes flicker {
            0% { opacity: 0.97; }
            5% { opacity: 0.95; }
            10% { opacity: 0.9; }
            15% { opacity: 0.95; }
            20% { opacity: 0.98; }
            25% { opacity: 0.95; }
            30% { opacity: 0.9; }
            35% { opacity: 0.95; }
            40% { opacity: 0.98; }
            45% { opacity: 0.95; }
            50% { opacity: 0.9; }
            55% { opacity: 0.95; }
            60% { opacity: 0.98; }
            65% { opacity: 0.95; }
            70% { opacity: 0.9; }
            75% { opacity: 0.95; }
            80% { opacity: 0.98; }
            85% { opacity: 0.95; }
            90% { opacity: 0.9; }
            95% { opacity: 0.95; }
            100% { opacity: 0.98; }
        }

        @media (max-width: 768px) {
            .terminal-block, .cart-block, .menu-buttons, .info-block {
                grid-column: span 1;
            }

            .block {
                margin: 10px;
                padding: 15px;
                grid-template-rows: 1fr;
            }

            .terminal-input input {
                font-size: 14px;
            }

            .retro-button {
                padding: 8px 15px;
                font-size: 12px;
            }
        }
