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

        body {
            font-family: 'Press Start 2P', cursive, Arial, sans-serif;
            background: #111 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23111"/><path d="M0 0L100 100M100 0L0 100" stroke="%23222" stroke-width="0.5"/></svg>');
            color: #e6e6e6;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
            padding: 10px;
            overflow-x: hidden;
        }

        .header {
            width: 100%;
            max-width: 800px;
            text-align: center;
            margin: 20px 0;
            position: relative;
        }

        .main-title {
            font-size: 36px;
            color: #ff3864;
            text-shadow: 0 0 10px #ff3864, 4px 4px 0 #000;
            letter-spacing: 2px;
            margin-bottom: 10px;
            position: relative;
            padding: 15px;
            background: #222;
            border: 4px solid #444;
            box-shadow: 0 0 15px #ff3864;
        }

        .subtitle {
            font-size: 16px;
            color: #39ff14;
            text-shadow: 0 0 5px #39ff14;
            margin-bottom: 30px;
        }

        .arcade-cabinet {
            width: 100%;
            max-width: 800px;
            background: #333;
            border: 12px solid #222;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7),
                inset 0 0 20px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .arcade-cabinet::before {
            content: "";
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #ff3864, #2b8cff, #39ff14, #ffdd00);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.7;
            filter: blur(5px);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .game-card {
            background: #222;
            border: 4px solid #444;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: #39ff14;
            box-shadow: 0 0 15px #39ff14;
        }

        .game-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(255, 56, 100, 0.1));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .game-card:hover::before {
            opacity: 1;
        }

        .game-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background: #333;
            border: 3px solid #555;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #ff3864;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .game-title {
            font-size: 14px;
            color: #fff;
            margin-bottom: 10px;
            text-shadow: 2px 2px 0 #000;
        }

        .game-desc {
            font-size: 10px;
            color: #aaa;
            line-height: 1.4;
        }

        .play-button {
            display: inline-block;
            background: #ff3864;
            color: #fff;
            padding: 8px 16px;
            border: none;
            border-radius: 5px;
            font-family: 'Press Start 2P', cursive;
            font-size: 10px;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 0 #c41e3a;
            transition: all 0.1s;
            margin-top: 10px;
            position: relative;
            z-index: 2;
            /* 确保按钮在伪元素之上 */
        }

        .play-button:hover {
            background: #ff4d78;
            transform: translateY(2px);
            box-shadow: 0 2px 0 #c41e3a;
        }

        .empty-slot {
            background: #1a1a1a;
            border: 4px dashed #444;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .empty-icon {
            font-size: 40px;
            color: #444;
            margin-bottom: 15px;
        }

        .empty-text {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .main-title {
                font-size: 28px;
            }

            .subtitle {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .games-grid {
                grid-template-columns: 1fr;
            }

            .main-title {
                font-size: 24px;
                padding: 10px;
            }

            .game-icon {
                width: 60px;
                height: 60px;
                font-size: 30px;
            }
        }