* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f7f0;
            color: #2d3e2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1a5d1a, #3aad3a);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffff66;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            font-size: 1.1rem;
            color: #ffffff;
            font-weight: normal;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            color: #ffff66;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a5d1a;
            font-size: 2.8rem;
            margin: 30px 0 20px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffff66;
        }
        h2 {
            color: #1a5d1a;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #ffff66;
        }
        h3 {
            color: #1a5d1a;
            font-size: 1.6rem;
            margin: 30px 0 15px;
            position: relative;
            padding-bottom: 8px;
        }
        h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #ffff66;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #1a5d1a;
            text-decoration: underline dotted #3aad3a;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 15px;
            background-color: #1a5d1a;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.25rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #ffff66;
            color: #1a5d1a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 45px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px 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: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-top: 5px solid #3aad3a;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin: 18px 0;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-left: 5px solid #3aad3a;
            transition: transform 0.3s ease;
        }
        .review-container:hover {
            transform: translateX(5px);
        }
        .reviewer {
            font-weight: bold;
            color: #1a5d1a;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffcc00;
            margin: 8px 0;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e6f7e6;
            color: #1a5d1a;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 8px 6px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #3aad3a;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background: linear-gradient(135deg, #1a5d1a, #3aad3a);
            color: white;
            padding: 50px 0 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #ffff66;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,102,0.3);
        }
        .game-types {
            list-style: none;
        }
        .game-types li {
            margin: 12px 0;
        }
        .game-types li a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .game-types li a:hover {
            color: #ffff66;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            grid-column: 1 / -1;
        }
        .recommendation {
            background-color: #e6f7e6;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #b3e0b3;
        }
        .recommendation p {
            font-size: 1.15rem;
            color: #1a5d1a;
            font-weight: 500;
            text-align: center;
        }
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .industry-card {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-top: 4px solid #3aad3a;
        }
        .industry-card h4 {
            color: #1a5d1a;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #1a5d1a;
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stat-item {
                flex-direction: column;
                gap: 5px;
            }
            .stat-item span:last-child {
                font-weight: bold;
                color: #1a5d1a;
            }
        }
