* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #1a202c;
            color: #f7fafc;
            padding: 18px 20px;
            position: relative;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #38b2ac;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            margin-top: 12px;
        }
        .nav a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav a:hover {
            background-color: rgba(56, 178, 172, 0.2);
            color: #38b2ac;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f7fafc;
            font-size: 1.6rem;
            cursor: pointer;
            z-index: 10;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #1a202c;
            margin: 25px 0;
            font-size: 2.4rem;
            text-align: center;
            border-bottom: 3px solid #38b2ac;
            padding-bottom: 10px;
        }
        h2 {
            color: #2d3748;
            margin: 35px 0 18px;
            font-size: 1.9rem;
            border-left: 5px solid #38b2ac;
            padding-left: 12px;
        }
        h3 {
            color: #4a5568;
            margin: 22px 0 12px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "•";
            color: #38b2ac;
            font-size: 1.8rem;
            margin-right: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.08rem;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #e53e3e;
            text-shadow: 0 0 1px rgba(0,0,0,0.1);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #38b2ac;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(56, 178, 172, 0.2);
        }
        .btn:hover {
            background-color: #319795;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(56, 178, 172, 0.3);
        }
        .btn-download {
            background-color: #dd6b20;
            box-shadow: 0 4px 6px rgba(221, 107, 32, 0.2);
        }
        .btn-download:hover {
            background-color: #c05621;
            box-shadow: 0 6px 8px rgba(221, 107, 32, 0.3);
        }
        .image-container {
            margin: 25px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 5px solid #38b2ac;
        }
        .review {
            background-color: #edf2f7;
            border-left: 5px solid #4299e1;
            padding: 20px;
            margin: 20px 0;
            border-radius: 6px;
            position: relative;
        }
        .review::before {
            content: """;
            font-size: 5rem;
            color: rgba(66, 153, 225, 0.1);
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .tag {
            display: inline-block;
            background-color: #4299e1;
            color: white;
            padding: 6px 14px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #3182ce;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #2d3748;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            border-bottom: 2px solid #38b2ac;
            color: #38b2ac;
        }
        .footer {
            background-color: #1a202c;
            color: #e2e8f0;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 0.95rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .emoji {
            margin-right: 8px;
        }
        .operator-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .operator-info {
            flex: 1;
            min-width: 300px;
        }
        .map-features {
            background-color: #f7fafc;
            border-radius: 8px;
            padding: 18px;
            margin: 15px 0;
            border-left: 3px solid #48bb78;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 22px;
                right: 20px;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 15px;
                margin-top: 20px;
                padding-top: 10px;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
                margin: 25px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 5px;
                width: 90%;
                text-align: center;
            }
            .operator-card {
                flex-direction: column;
                text-align: center;
            }
        }
