* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f5f1e8;
            color: #2d2a26;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #8b5a2b;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffd700;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: #6d4c41;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.6rem;
            margin: 30px 0;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b5a2b;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-bottom: 3px solid #cd853f;
            padding-bottom: 10px;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 60px;
            height: 3px;
            background-color: #ffd700;
        }
        h3 {
            color: #8b4513;
            font-size: 1.6rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #cd853f;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
            text-decoration: underline dotted #cd853f;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #cd853f;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 12px 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #8b4513;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .btn-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #ffd700;
        }
        .stats-box h3 {
            color: #8b5a2b;
            margin-top: 0;
        }
        .stats-box p {
            margin: 12px 0;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "•";
            color: #cd853f;
            font-weight: bold;
            margin-right: 10px;
        }
        .review {
            background-color: white;
            border-left: 5px solid #cd853f;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .review p {
            font-style: italic;
            margin-bottom: 10px;
        }
        .review .reviewer {
            font-weight: bold;
            color: #8b5a2b;
            text-align: right;
        }
        .tag {
            display: inline-block;
            background-color: #d2b48c;
            color: #2d2a26;
            padding: 6px 14px;
            border-radius: 20px;
            margin: 8px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #8b4513;
            color: white;
            transform: scale(1.05);
        }
        footer {
            background-color: #2d2a26;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-types h3 {
            color: #ffd700;
            border-left-color: #ffd700;
        }
        .game-types a {
            color: #d2b48c;
            text-decoration: none;
            margin-right: 18px;
            font-size: 1.05rem;
            transition: color 0.3s;
        }
        .game-types a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .tags-container {
            margin: 30px 0;
        }
        .tags-container h3 {
            color: #ffd700;
            border-left-color: #ffd700;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,215,0,0.1);
            border-radius: 8px;
            border: 1px solid #ffd700;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 0.95rem;
            color: #b3b3b3;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        .copyright a {
            color: #ffd700;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #8b5a2b;
                padding: 25px;
                gap: 15px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 20px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1.05rem;
                line-height: 1.7;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 5px;
                width: 80%;
                display: inline-block;
            }
            .stats-box {
                padding: 20px;
            }
            .review {
                padding: 15px;
            }
        }
