* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f4e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px 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 {
            font-size: 1.7rem;
            font-weight: bold;
            color: #FFD700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        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: 6px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            color: #FFD700;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.9rem;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #8B4513;
            font-size: 2.6rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 4px solid #D2691E;
            text-shadow: 2px 2px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8B4513;
            font-size: 2.1rem;
            margin: 45px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #D2691E;
        }
        h3 {
            color: #CD853F;
            font-size: 1.6rem;
            margin: 35px 0 20px;
            padding-bottom: 5px;
            border-bottom: 2px dotted #CD853F;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8B4513;
            text-decoration: underline wavy #D2691E;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 18px;
            background-color: #D2691E;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #CD853F;
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.25);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 22px;
            background-color: #FFF8DC;
            border-radius: 10px;
            border: 1px solid #FFE4B5;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #8B4513;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
            border-left: 5px solid #FFD700;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #8B4513;
            font-size: 1.1rem;
        }
        .rating {
            color: #FFD700;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            padding: 10px 18px;
            background-color: #FFF8DC;
            color: #8B4513;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #FFE4B5;
            border-color: #CD853F;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 45px 0;
            padding: 25px;
            background-color: #FFF8DC;
            border-radius: 10px;
        }
        .type-link {
            color: #8B4513;
            text-decoration: none;
            margin-right: 25px;
            font-weight: bold;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .type-link:hover {
            color: #CD853F;
            text-decoration: underline;
        }
        footer {
            background-color: #3E2723;
            color: white;
            padding: 45px 0 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: #FFD700;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        .footer-section ul {
            list-style-type: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #F5F5DC;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section ul li a:hover {
            color: #FFD700;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #5D4037;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #E0E0E0;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 20px;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
