* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #b32424;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            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;
        }
        nav ul li a:hover {
            color: #ffd700;
        }
        .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: #b32424;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b4513;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d2b48c;
        }
        h3 {
            color: #8b4513;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #b32424;
        }
        .button-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px;
            background-color: #b32424;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #8b1a1a;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .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: #fff8e1;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            border-left: 5px solid #ff9800;
        }
        .review-box {
            background-color: #e8f5e9;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 5px solid #4caf50;
        }
        .reviewer {
            font-style: italic;
            color: #555;
            margin-top: 10px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffe0b2;
            color: #e65100;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e65100;
            color: white;
        }
        .game-type-nav {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            text-decoration: none;
            color: #8b4513;
            font-weight: bold;
        }
        .game-type:hover {
            color: #b32424;
            text-decoration: underline;
        }
        footer {
            background-color: #3e2723;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #5d4037;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .nav-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 20px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
        }
