* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica Neue', sans-serif;
        }
        body {
            background-color: #fffbf0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #8b4513;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd700;
            font-size: 28px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 36px;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #8b4513;
            font-size: 28px;
            margin: 40px 0 20px;
            border-bottom: 2px solid #cd853f;
            padding-bottom: 10px;
            line-height: 1.3;
        }
        h3 {
            color: #8b4513;
            font-size: 24px;
            margin: 30px 0 15px;
            line-height: 1.3;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px 15px;
            background-color: #cd853f;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 20px;
            font-weight: bold;
            transition: background-color 0.3s, transform 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #8b4513;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #ddd;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .review:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffd700;
            margin-bottom: 10px;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f0e6d2;
            color: #8b4513;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
        }
        .tag:hover {
            background-color: #cd853f;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #8b4513;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 30px;
        }
        .game-type-link {
            color: #ffd700;
            text-decoration: none;
            margin-right: 20px;
            font-size: 18px;
            transition: color 0.3s;
        }
        .game-type-link:hover {
            color: #fff;
            text-decoration: underline;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }
        @media (max-width: 768px) {
            .nav-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-item span:last-child {
                margin-top: 5px;
                font-weight: bold;
            }
        }
