* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2d2413;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #9b7226;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-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;
            text-decoration: none;
            color: #ffeb99;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            font-family: 'Georgia', serif;
        }
        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 ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffeb99;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #7d5a1a;
            font-size: 2.5rem;
            margin: 30px 0;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #9b7226;
        }
        h2 {
            color: #7d5a1a;
            font-size: 2rem;
            margin: 40px 0 20px;
            border-bottom: 2px solid #9b7226;
            padding-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: '👑';
            position: absolute;
            left: -5px;
        }
        h3 {
            color: #7d5a1a;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #9b7226;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #7d5a1a;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #9b7226;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 30px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #7d5a1a;
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #9b7226;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0e6d6;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-box {
            background-color: white;
            border-left: 5px solid #9b7226;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            position: relative;
        }
        .review-box:before {
            content: '"';
            font-size: 5rem;
            color: rgba(155, 114, 38, 0.1);
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-weight: bold;
            color: #7d5a1a;
            margin-top: 15px;
            display: block;
        }
        .tag {
            display: inline-block;
            background-color: #f0e6d6;
            padding: 6px 16px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            color: #7d5a1a;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #9b7226;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2d2413;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffeb99;
            margin-bottom: 25px;
            border-left-color: #ffeb99;
        }
        .game-types a {
            display: block;
            color: #e0e0e0;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }
        .game-types a:hover {
            color: #ffeb99;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 40px;
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        .toc {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .toc h3 {
            margin-top: 0;
            margin-bottom: 20px;
        }
        .toc ul {
            list-style-type: none;
        }
        .toc li {
            margin-bottom: 10px;
        }
        .toc a {
            color: #9b7226;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .toc a:hover {
            color: #7d5a1a;
            padding-left: 5px;
        }
        .feature-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #9b7226;
        }
        .feature-box h4 {
            color: #7d5a1a;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #9b7226;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                line-height: 1.7;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
