* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #2d2413;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #5d4037;
            padding: 18px 20px;
            color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffecb3;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            margin-bottom: 12px;
            font-family: 'Georgia', serif;
        }
        .nav-container {
            position: relative;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 2px solid #ffecb3;
            color: #ffecb3;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 12px;
            border-radius: 5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ffecb3;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffcc80;
            transition: width 0.3s;
        }
        .nav-links a:hover {
            color: #ffcc80;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1, h2, h3 {
            color: #5d4037;
            margin: 30px 0 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #bcaaa4;
        }
        h1 {
            font-size: 2.4rem;
            color: #5d4037;
            text-align: center;
            margin: 40px 0 30px;
            border-bottom: none;
            font-family: 'Georgia', serif;
        }
        h2 {
            font-size: 1.9rem;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.6rem;
            border-bottom: 1px solid #bcaaa4;
            margin-top: 30px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 12px 8px;
            background-color: #8d6e63;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            text-align: center;
            font-size: 1.05rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #5d4037;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #388e3c;
        }
        .btn-download:hover {
            background-color: #2e7d32;
        }
        .btn-login {
            background-color: #1976d2;
        }
        .btn-login:hover {
            background-color: #1565c0;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #fff8e1;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            border-left: 6px solid #8d6e63;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }
        .highlight {
            font-weight: bold;
            color: #5d4037;
            font-size: 1.1rem;
        }
        .gameplay-section {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 30px 0;
        }
        .gameplay-item {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .gameplay-item:hover {
            transform: translateY(-5px);
        }
        .review {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #f1ece6;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #6d4c41;
            margin-top: 15px;
            font-size: 1rem;
        }
        .tag {
            display: inline-block;
            background-color: #bcaaa4;
            color: white;
            padding: 6px 12px;
            border-radius: 25px;
            margin: 6px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #5d4037;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 6px;
            text-decoration: none;
            color: #5d4037;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #3e2723;
            text-decoration: underline;
        }
        footer {
            background-color: #2d2413;
            color: #e0e0e0;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffecb3;
            border-bottom: 1px solid #ffecb3;
            padding-bottom: 8px;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4e342e;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #b0b0b0;
        }
        .tip-box {
            background-color: #e8f5e9;
            border-left: 5px solid #4caf50;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        .pro-tip {
            font-weight: bold;
            color: #2e7d32;
            display: block;
            margin-bottom: 5px;
        }
        .region-badge {
            display: inline-block;
            background-color: #ffe0b2;
            color: #e65100;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.9rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                margin-bottom: 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                text-align: left;
                font-size: 1.05rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            .gameplay-section {
                gap: 15px;
            }
        }
