* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            font-size: 16px;
        }
        header {
            background: linear-gradient(135deg, #e65c00, #ff9500);
            padding: 15px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffeb3b;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .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: #e65c00;
            margin: 30px 0 20px;
            font-size: 2.4rem;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff9500;
        }
        h2 {
            color: #e65c00;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            padding-left: 10px;
            border-left: 5px solid #ff9500;
        }
        h3 {
            color: #d35400;
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e65c00;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            background-color: #e65c00;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #2ecc71;
        }
        .btn-download:hover {
            background-color: #27ae60;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e65c00;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #666;
            font-size: 1rem;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f1f1f1;
        }
        .reviewer {
            font-weight: bold;
            color: #333;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 8px;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffe0b2;
            color: #e65c00;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e65c00;
            color: white;
        }
        .game-type-nav {
            margin: 30px 0 40px;
        }
        .game-type {
            display: inline-block;
            color: #e65c00;
            text-decoration: none;
            margin: 0 12px 10px 0;
            font-weight: 500;
            position: relative;
            padding-bottom: 2px;
        }
        .game-type::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e65c00;
            transition: width 0.3s ease;
        }
        .game-type:hover::after {
            width: 100%;
        }
        .tips-box {
            background-color: #fff3e0;
            border-left: 5px solid #ff9500;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        .tips-box h4 {
            color: #e65c00;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffcc00;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #ffcc00;
            bottom: 0;
            left: 0;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        .comparison-table th {
            background-color: #f9f0e3;
            color: #e65c00;
            font-weight: bold;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table tr:hover {
            background-color: #fff8f0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 8px 0;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 10px auto;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .rating {
                margin-top: 10px;
            }
            .comparison-table {
                font-size: 0.9rem;
            }
            .comparison-table th, .comparison-table td {
                padding: 10px 8px;
            }
        }
