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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            color: #fff;
            overflow-x: hidden;
        }

        .header {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        @media (min-width: 768px) {
            .header {
                padding: 25px 30px;
            }

            .logo {
                font-size: 42px !important;
            }

            .lang-button {
                font-size: 15px !important;
                padding: 12px 24px !important;
            }
        }

        .header-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            font-size: 36px;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
            flex-shrink: 0;
        }

        .language-selector {
            position: relative;
        }

        .lang-dropdown {
            position: relative;
            display: inline-block;
        }

        .lang-button {
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
        }

        .lang-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .lang-button::after {
            content: '▼';
            font-size: 10px;
        }

        .lang-menu {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: rgba(30, 30, 50, 0.95);
            border-radius: 15px;
            padding: 10px;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
        }

        .lang-menu.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lang-option {
            padding: 10px 15px;
            border: none;
            border-radius: 10px;
            background: transparent;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            font-size: 13px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            text-align: left;
        }

        .lang-option:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .lang-option.active {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: #fff;
        }

        .lang-option-flag {
            font-size: 18px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .subtitle {
            text-align: center;
            margin: 20px 0 30px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }

        .games-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .game-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .game-icon {
            width: 100px;
            height: 100px;
            min-width: 100px;
            border-radius: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
        }

        .game-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .game-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .game-info {
            flex: 1;
        }

        .game-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .game-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .game-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 12px;
        }

        .game-tag {
            display: inline-block;
            padding: 4px 10px;
            background: rgba(102, 126, 234, 0.3);
            border: 1px solid rgba(102, 126, 234, 0.5);
            border-radius: 12px;
            font-size: 11px;
            color: #a5b4fc;
            font-weight: 500;
        }

        .game-details {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .game-detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .detail-icon {
            font-size: 14px;
        }

        .game-stats {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 12px;
        }

        .game-rating {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 215, 0, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .stars {
            display: flex;
            gap: 2px;
            font-size: 14px;
        }

        .star {
            color: #ffd700;
            text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        }

        .star.empty {
            color: rgba(255, 255, 255, 0.15);
        }

        .rating-number {
            font-size: 13px;
            color: #ffd700;
            font-weight: 700;
        }

        .game-online {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(74, 222, 128, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid rgba(74, 222, 128, 0.2);
            font-size: 12px;
            color: #4ade80;
            font-weight: 600;
        }

        .online-dot {
            width: 6px;
            height: 6px;
            background: #4ade80;
            border-radius: 50%;
            animation: onlinePulse 2s infinite;
            box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
        }

        @keyframes onlinePulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.2);
            }
        }

        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 40px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 5px;
        }

        @media (min-width: 768px) {
            .stats {
                padding: 30px;
                margin-top: 50px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-label {
                font-size: 16px;
            }
        }

        .footer {
            text-align: center;
            padding: 30px 20px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #48dbfb;
            text-decoration: underline;
        }

        .separator {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
        }

        /* 移动端适配 */
        @media (max-width: 767px) {
            .game-card {
                padding: 18px;
                gap: 15px;
            }

            .game-icon {
                width: 70px;
                height: 70px;
                min-width: 70px;
                font-size: 35px;
                border-radius: 16px;
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            }

            .game-icon img {
                border-radius: 20px;
            }

            .game-title {
                font-size: 16px;
            }

            .game-description {
                font-size: 12px;
            }

            .game-stats {
                gap: 10px;
            }

            .game-rating {
                padding: 5px 10px;
            }

            .stars {
                font-size: 13px;
            }

            .rating-number {
                font-size: 12px;
            }

            .game-online {
                padding: 5px 10px;
                font-size: 11px;
            }

            .online-dot {
                width: 5px;
                height: 5px;
            }

            .game-features {
                gap: 6px;
                margin-bottom: 10px;
            }

            .game-tag {
                font-size: 10px;
                padding: 3px 8px;
            }

            .game-details {
                margin-top: 10px;
                padding-top: 10px;
            }

            .game-detail-item {
                font-size: 11px;
                gap: 6px;
                margin-bottom: 6px;
            }

            .detail-icon {
                font-size: 12px;
            }
        }

        /* 超小屏幕适配 */
        @media (max-width: 360px) {
            .logo {
                font-size: 24px;
            }

            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .language-selector {
                max-width: 100%;
            }

            .game-card {
                padding: 15px;
                gap: 12px;
            }

            .game-icon {
                width: 55px;
                height: 55px;
                min-width: 55px;
                font-size: 28px;
                border-radius: 14px;
                box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
            }

            .game-icon img {
                border-radius: 14px;
            }

            .game-title {
                font-size: 15px;
            }

            .game-description {
                font-size: 11px;
            }

            .game-stats {
                gap: 8px;
            }

            .game-rating {
                padding: 4px 8px;
            }

            .stars {
                font-size: 12px;
            }

            .rating-number {
                font-size: 11px;
            }

            .game-online {
                padding: 4px 8px;
                font-size: 10px;
            }

            .online-dot {
                width: 4px;
                height: 4px;
            }

            .lang-btn {
                font-size: 12px;
                padding: 8px 14px;
            }

            .footer-links {
                flex-direction: column;
                gap: 8px;
            }

            .separator {
                display: none;
            }

            .game-features {
                gap: 5px;
                margin-bottom: 8px;
            }

            .game-tag {
                font-size: 9px;
                padding: 2px 6px;
            }

            .game-details {
                margin-top: 8px;
                padding-top: 8px;
            }

            .game-detail-item {
                font-size: 10px;
                gap: 5px;
                margin-bottom: 5px;
            }

            .detail-icon {
                font-size: 11px;
            }
        }

        /* PC端大屏优化 */
        @media (min-width: 768px) {
            .game-card {
                padding: 25px;
                gap: 25px;
            }

            .game-icon {
                width: 110px;
                height: 110px;
                min-width: 110px;
                font-size: 55px;
                border-radius: 22px;
                box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
            }

            .game-icon img {
                border-radius: 22px;
            }

            .game-title {
                font-size: 22px;
            }

            .game-description {
                font-size: 14px;
            }

            .game-rating {
                padding: 8px 16px;
            }

            .stars {
                font-size: 16px;
            }

            .rating-number {
                font-size: 14px;
            }

            .game-online {
                padding: 8px 16px;
                font-size: 13px;
            }

            .online-dot {
                width: 7px;
                height: 7px;
            }
        }