* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0e6d2;
            color: #2d2414;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .mobile-nav-btn {
            display: block;
            background-color: #9e7c36;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 18px;
            cursor: pointer;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            display: none;
            background-color: #1a2421;
            padding: 15px 0;
        }
        .nav-container.active {
            display: block;
        }
        .nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .nav-links li a:hover {
            background-color: #9e7c36;
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #9e7c36;
            text-align: center;
            margin: 25px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        @media (min-width: 768px) {
            .mobile-nav-btn {
                display: none;
            }
            .nav-container {
                display: block;
                position: sticky;
                top: 0;
                z-index: 100;
            }
            .nav-links {
                flex-direction: row;
                justify-content: center;
                gap: 25px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            color: #6d4c1a;
            text-align: center;
            margin: 35px 0;
            font-size: 36px;
            border-bottom: 3px solid #9e7c36;
            padding-bottom: 15px;
        }
        h2 {
            color: #6d4c1a;
            margin: 45px 0 20px;
            font-size: 28px;
            border-left: 5px solid #9e7c36;
            padding-left: 15px;
        }
        h3 {
            color: #1a2421;
            margin: 30px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 20px;
            font-size: 16px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #9e7c36;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background-color: #7d5d23;
            transform: translateY(-2px);
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            display: block;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin: 35px 0;
        }
        .stats-box h3 {
            text-align: center;
            margin-bottom: 25px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #f0e6d2;
            border-radius: 8px;
        }
        .stat-number {
            font-size: 28px;
            font-weight: bold;
            color: #9e7c36;
            margin-bottom: 5px;
        }
        .review-box {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #9e7c36;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .guide-step {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            padding: 8px 15px;
            background-color: #1a2421;
            color: white;
            text-decoration: none;
            border-radius: 20px;
            margin: 5px;
            font-size: 14px;
            transition: background 0.3s;
        }
        .tag:hover {
            background-color: #9e7c36;
        }
        .game-type-nav {
            margin: 30px 0;
            text-align: center;
        }
        .game-type-link {
            display: inline-block;
            padding: 10px 20px;
            background-color: #6d4c1a;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin: 5px;
            transition: background 0.3s;
        }
        .game-type-link:hover {
            background-color: #523814;
        }
        footer {
            background-color: #1a2421;
            color: white;
            padding: 30px 0;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .footer-copyright {
            margin-top: 20px;
            font-size: 14px;
            color: #ccc;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .emoji-box {
            font-size: 24px;
            text-align: center;
            margin: 15px 0;
        }
