* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #333;
            line-height: 1.8;
            font-size: 17px;
        }
        header {
            background: linear-gradient(135deg, #ff6b00, #ff9500);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
        }
        main {
            padding: 30px 0;
        }
        h1 {
            color: #e65c00;
            font-size: 34px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff9500;
            text-align: center;
        }
        h2 {
            color: #d35400;
            font-size: 26px;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #ff9500;
        }
        h3 {
            color: #e65c00;
            font-size: 22px;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .btn-section {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            background-color: #ff9500;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #28a745;
        }
        .btn-login {
            background-color: #007bff;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 1px solid #eee;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f1f1f1;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        }
        .reviewer {
            font-weight: bold;
            color: #e65c00;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ff9500;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #e65c00;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 30px 0 40px;
        }
        .game-type-link {
            display: inline-block;
            color: #007bff;
            text-decoration: none;
            margin-right: 20px;
            margin-bottom: 10px;
            font-weight: 500;
        }
        .game-type-link:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #2d2d2d;
            color: #f0f0f0;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ff9500;
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #ff9500;
        }
        .recommendation {
            margin: 20px 0;
            padding: 15px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 6px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                width: 100%;
                margin-top: 20px;
                flex-direction: column;
                gap: 10px;
            }
            nav ul.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            .btn {
                width: 90%;
                margin: 0 0 15px;
                text-align: center;
            }
        }
