* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #4d3319;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e67e22;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover {
            border-bottom: 2px solid white;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d35400;
            margin-bottom: 30px;
            font-size: 36px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #d35400;
            margin: 50px 0 25px;
            font-size: 28px;
            border-bottom: 3px solid #e67e22;
            padding-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: "🍛";
            position: absolute;
            left: -5px;
            top: 5px;
        }
        h3 {
            color: #e67e22;
            margin: 35px 0 15px;
            font-size: 22px;
            padding-left: 10px;
            border-left: 4px solid #e67e22;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
            text-decoration: underline dotted;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .btn-container {
            margin: 50px 0;
            text-align: center;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 15px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #27ae60;
        }
        .download-btn:hover {
            background-color: #219653;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #e67e22;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff4e0;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #d35400;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #666;
            font-size: 16px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 5px solid #e67e22;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: center;
        }
        .reviewer {
            font-weight: bold;
            color: #d35400;
            font-size: 19px;
        }
        .rating {
            color: #f39c12;
            font-size: 20px;
        }
        footer {
            background-color: #4d3319;
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .game-type {
            margin-bottom: 40px;
        }
        .game-type h3 {
            color: #ffcc80;
            margin-bottom: 20px;
            border-left-color: #ffcc80;
        }
        .game-type-links a {
            color: #ffebcd;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 12px;
            transition: color 0.3s;
        }
        .game-type-links a:hover {
            color: white;
            text-decoration: underline;
        }
        .tags {
            margin: 40px 0;
        }
        .tags h3 {
            color: #ffcc80;
            margin-bottom: 20px;
            border-left-color: #ffcc80;
        }
        .tag-links a {
            color: #ffebcd;
            text-decoration: none;
            background-color: #6d4c41;
            padding: 8px 18px;
            border-radius: 50px;
            margin-right: 12px;
            margin-bottom: 12px;
            display: inline-block;
            transition: all 0.3s;
        }
        .tag-links a:hover {
            background-color: #e67e22;
            color: white;
        }
        .recommendation {
            margin: 40px 0;
            padding: 25px;
            background-color: #6d4c41;
            border-radius: 10px;
            border-left: 5px solid #e67e22;
        }
        .copyright {
            text-align: center;
            margin-top: 60px;
            padding-top: 25px;
            border-top: 1px solid #795548;
            color: #ffebcd;
            font-size: 16px;
        }
        .tips-box {
            background-color: #fff8e1;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            border-left: 5px solid #f57c00;
        }
        .tips-box h4 {
            color: #e65100;
            margin-bottom: 15px;
            font-size: 19px;
        }
        .regional-variation {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .regional-variation h4 {
            color: #d35400;
            margin-bottom: 15px;
            font-size: 20px;
            display: flex;
            align-items: center;
        }
        .regional-variation h4::before {
            content: "📍";
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                position: relative;
                padding: 20px;
            }
            nav {
                margin-top: 25px;
                width: 100%;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            nav ul li {
                margin: 12px 0;
                text-align: center;
            }
            nav ul li a {
                display: block;
                padding: 8px;
                font-size: 18px;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 25px;
                right: 25px;
            }
            h1 {
                font-size: 28px;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 24px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 20px;
                margin: 30px 0 15px;
            }
            p {
                font-size: 17px;
                line-height: 1.7;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 15px;
                font-size: 17px;
            }
            .stats-grid {
                gap: 15px;
            }
            .stat-number {
                font-size: 28px;
            }
            .review-container {
                padding: 20px;
            }
        }
