* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fffbf0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #b8860b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            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: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        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.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b5a2b;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #f0e68c;
        }
        h2 {
            color: #8b5a2b;
            font-size: 2rem;
            margin: 40px 0 20px 0;
            padding-left: 15px;
            border-left: 5px solid #f0e68c;
        }
        h3 {
            color: #cd853f;
            font-size: 1.5rem;
            margin: 30px 0 15px 0;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #8b5a2b;
        }
        .button-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px;
            background-color: #b8860b;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #8b6914;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.3);
        }
        .btn-secondary {
            background-color: #f0e68c;
            color: #333;
        }
        .btn-secondary:hover {
            background-color: #e6d882;
        }
        .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.2);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .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: #f5f5dc;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 5px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #cd853f;
        }
        .rating {
            color: #ffd700;
            font-weight: bold;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f5f5dc;
            color: #8b5a2b;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e6e6c8;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 15px;
            text-decoration: none;
            color: #8b5a2b;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            color: #6d4c41;
            text-decoration: underline;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px 0;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f0e68c;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #ccc;
        }
        .recommendation {
            background-color: #f5f5dc;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
            border-left: 5px solid #f0e68c;
        }
        .recommendation a {
            color: #8b5a2b;
            font-weight: bold;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            nav {
                margin-top: 15px;
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .button-container {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .btn {
                margin: 10px 0;
                width: 80%;
            }
        }
