* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fdf8f0;
            color: #2d2415;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #9b5d27;
            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: #ffdfa0;
            font-size: 1.8rem;
            font-weight: bold;
            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: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 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: #ffdfa0;
            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: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #9b5d27;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #d4a06a;
            padding-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #9b5d27;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-left: 4px solid #d4a06a;
            padding-left: 15px;
        }
        h3 {
            color: #9b5d27;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            position: relative;
            padding-left: 10px;
        }
        h3:before {
            content: '★';
            position: absolute;
            left: -20px;
            color: #d4a06a;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #9b5d27;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px;
            background-color: #9b5d27;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #d4a06a;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-container {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-left: 5px solid #d4a06a;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f1e8d9;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-container {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-container:before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 15px;
            font-size: 5rem;
            color: #f1e8d9;
            font-family: Georgia, serif;
            z-index: 1;
        }
        .reviewer {
            font-weight: bold;
            color: #9b5d27;
            position: relative;
            z-index: 2;
        }
        .rating {
            color: #ffb400;
            margin: 5px 0;
            position: relative;
            z-index: 2;
        }
        .tag-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #f1e8d9;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #2d2415;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #d4a06a;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type {
            text-decoration: none;
            color: #9b5d27;
            font-weight: bold;
            position: relative;
            padding: 0 5px;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #d4a06a;
            transition: width 0.3s;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d2415;
            color: #f1e8d9;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffdfa0;
            margin-bottom: 15px;
            padding-left: 0;
        }
        .footer-section h3:before {
            display: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #4a3d2a;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        .toc-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .toc-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #9b5d27;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1e8d9;
        }
        .toc-list {
            list-style-type: none;
        }
        .toc-list li {
            margin: 10px 0;
        }
        .toc-list a {
            color: #2d2415;
            text-decoration: none;
            transition: color 0.3s;
        }
        .toc-list a:hover {
            color: #9b5d27;
            padding-left: 5px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            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: left;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
            }
            p {
                text-align: left;
            }
        }
