* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #fff8e6;
            color: #333;
            padding-bottom: 50px;
        }
        header {
            background-color: #ff7043;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: white;
            font-size: 28px;
            font-weight: 900;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 1px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            top: 20px;
            left: 20px;
        }
        .nav-menu {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .nav-menu a:hover {
            background-color: #ff5722;
        }
        main {
            max-width: 1100px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 36px;
            color: #e64a19;
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffccbc;
        }
        h2 {
            font-size: 28px;
            color: #d84315;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ff7043;
        }
        h3 {
            font-size: 22px;
            color: #c2185b;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .keyword {
            font-weight: 800;
            color: #e64a19;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 15px 10px;
            background-color: #ff5722;
            color: white;
            text-decoration: none;
            font-weight: 700;
            border-radius: 8px;
            font-size: 18px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(255,87,34,0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,87,34,0.5);
        }
        .btn-login {
            background-color: #c2185b;
        }
        .btn-login:hover {
            background-color: #a00d45;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: #ffe0b2;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ff9800;
        }
        .stats-box ul {
            list-style-type: none;
        }
        .stats-box li {
            font-size: 18px;
            margin: 10px 0;
            padding-left: 20px;
            position: relative;
        }
        .stats-box li:before {
            content: "🍛";
            position: absolute;
            left: 0;
        }
        .review-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #ff7043;
        }
        .reviewer {
            font-weight: 700;
            color: #c2185b;
            margin-bottom: 5px;
        }
        .review-rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        .guide-tip {
            background-color: #f3e5f5;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #9c27b0;
        }
        .guide-tip h4 {
            color: #7b1fa2;
            font-size: 20px;
            margin-bottom: 10px;
        }
        .event-card {
            background-color: #e8f5e9;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.07);
        }
        .event-date {
            color: #2e7d32;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .community-link {
            color: #1976d2;
            text-decoration: none;
            font-weight: 600;
        }
        .community-link:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .game-categories, .tags {
            margin-bottom: 30px;
        }
        .game-categories h3, .tags h3 {
            color: #ffccbc;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .category-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .category-list a, .tag-list a {
            color: white;
            background-color: #555;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        .category-list a:hover, .tag-list a:hover {
            background-color: #ff7043;
        }
        .recommendation {
            background-color: #444;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
            font-size: 18px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 16px;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
                margin-left: 50px;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-top: 20px;
            }
            .nav-menu.active {
                display: flex;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 16px;
                width: 100%;
                margin: 10px 0;
            }
        }
