body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f5f5f5; }
        header { background-color: #FF4500; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; top: 10px; right: 10px; background: none; border: none; color: white; font-size: 24px; }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 15px; }
        h1 { color: #FF4500; font-size: 2.5em; margin-bottom: 20px; }
        h2 { color: #333; font-size: 1.8em; margin: 30px 0 15px; border-bottom: 2px solid #FF4500; padding-bottom: 5px; }
        h3 { color: #555; font-size: 1.4em; margin: 25px 0 10px; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #FF4500; color: white; padding: 12px 25px; margin: 10px 5px; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .game-stats { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin: 20px 0; }
        .player-review { background-color: #e9f7fe; padding: 15px; border-left: 4px solid #00a8ff; margin-bottom: 15px; }
        .local-event { background-color: #fff8e6; padding: 15px; border-left: 4px solid #ffa502; margin-bottom: 15px; }
        .community-post { background-color: #e6ffe6; padding: 15px; border-left: 4px solid #2ecc71; margin-bottom: 15px; }
        img { max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 8px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-tags { margin: 20px 0; }
        .game-tag { display: inline-block; background-color: #555; color: white; padding: 5px 10px; margin: 3px; border-radius: 3px; text-decoration: none; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; background-color: #FF4500; color: white; padding: 5px 10px; margin: 3px; border-radius: 3px; text-decoration: none; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            h1 { font-size: 2em; }
            h2 { font-size: 1.5em; }
            h3 { font-size: 1.2em; }
        }
