* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
            font-size: 16px;
        }
        header {
            background-color: #5d4037;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffcc80;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            font-family: 'Georgia', serif;
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: #ffcc80;
            color: #5d4037;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #5d4037;
            font-size: 2.3rem;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            padding-bottom: 10px;
            border-bottom: 3px solid #bcaaa4;
        }
        h2 {
            color: #6d4c41;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #bcaaa4;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #6d4c41;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #5d4037;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            min-width: 200px;
        }
        .download-btn {
            background-color: #2e7d32;
            color: white;
            border: 2px solid #1b5e20;
        }
        .login-btn {
            background-color: #1565c0;
            color: white;
            border: 2px solid #0d47a1;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 4px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 5px solid #bcaaa4;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fff8e1;
            border-radius: 6px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #5d4037;
        }
        .review-container {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-bottom: 3px solid #bcaaa4;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #5d4037;
        }
        .rating {
            color: #ff9800;
        }
        .tips-list {
            margin: 20px 0;
            padding-left: 40px;
        }
        .tips-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: "•";
            color: #5d4037;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .tag-container {
            margin: 40px 0;
            background-color: #fff8e1;
            padding: 20px;
            border-radius: 8px;
        }
        .tag {
            display: inline-block;
            background-color: #bcaaa4;
            color: #2d2d2d;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #5d4037;
            color: white;
            transform: scale(1.1);
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #1565c0;
            font-weight: bold;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            border-bottom: 2px solid #1565c0;
        }
        footer {
            background-color: #2d2d2d;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffcc80;
            font-family: 'Georgia', serif;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #5d4037;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #bcaaa4;
        }
        .feature-box {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        .feature-icon {
            font-size: 3rem;
            color: #5d4037;
            margin-right: 20px;
            min-width: 60px;
            text-align: center;
        }
        .feature-content {
            flex: 1;
            min-width: 300px;
        }
        .region-box {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .region-card {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-top: 5px solid #6d4c41;
        }
        .region-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #5d4037;
            margin-bottom: 10px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .data-table th, .data-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #bcaaa4;
        }
        .data-table th {
            background-color: #5d4037;
            color: white;
        }
        .data-table tr:hover {
            background-color: #fff8e1;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            nav {
                margin-top: 15px;
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 80%;
                text-align: center;
            }
            .feature-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            .data-table {
                font-size: 0.9rem;
            }
            .data-table th, .data-table td {
                padding: 8px 10px;
            }
        }
