* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f1;
            color: #2d3e30;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #2c5f2d;
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffcc00;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        h1 {
            font-size: 2.5rem;
            color: #2c5f2d;
            margin: 30px 0;
            text-align: center;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #2c5f2d;
            margin: 40px 0 20px;
            border-left: 4px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #2d3e30;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🎯";
            margin-right: 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #2c5f2d;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #2c5f2d;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #1e451f;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            border: 2px solid #ffcc00;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-top: 5px solid #2c5f2d;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f9fcf9;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #2c5f2d;
        }
        .review-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            border-left: 3px solid #ffcc00;
        }
        .reviewer {
            font-weight: bold;
            color: #555;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 8px;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: #eaf2ea;
            color: #2c5f2d;
            text-decoration: none;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #d4e6d4;
            transform: scale(1.05);
        }
        .game-type {
            margin: 40px 0 20px;
        }
        .game-type a {
            color: #2c5f2d;
            text-decoration: none;
            font-weight: 500;
            margin: 0 5px;
        }
        .game-type a:hover {
            text-decoration: underline;
            color: #1e451f;
        }
        footer {
            background-color: #2c5f2d;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a7a4b;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #d0d9d0;
        }
        .tips-box {
            background-color: #fff8e6;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            border-left: 4px solid #ffcc00;
        }
        .tips-box h4 {
            color: #b8860b;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #2c5f2d;
                padding: 20px;
                gap: 15px;
                border-top: 2px solid #ffcc00;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                text-align: left;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
