body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF9933; color: white; padding: 15px 0; text-align: center; position: relative; }
        header h1 { margin: 0; font-size: 28px; }
        .logo-text { font-weight: bold; font-size: 32px; text-shadow: 2px 2px 4px #00000080; }
        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: 15px; right: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { display: none; flex-direction: column; align-items: center; width: 100%; background-color: #FF9933; position: absolute; top: 70px; left: 0; }
            nav.active { display: flex; }
            nav a { padding: 10px 0; width: 100%; text-align: center; }
        }
        h1 { color: #FF9933; font-size: 28px; margin-bottom: 20px; }
        h2 { color: #138808; font-size: 24px; margin-top: 30px; margin-bottom: 15px; }
        h3 { color: #87CEFA; font-size: 20px; margin-top: 25px; margin-bottom: 10px; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #138808; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background-color: #0d6e0d; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        .game-stats { background-color: white; padding: 20px; border-radius: 8px; margin: 20px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .player-review { background-color: #e9f7ef; padding: 15px; border-left: 4px solid #138808; margin-bottom: 15px; }
        .local-event { background-color: #fff8e1; padding: 15px; border-left: 4px solid #FF9933; margin-bottom: 15px; }
        .community-post { background-color: #e3f2fd; padding: 15px; border-left: 4px solid #87CEFA; margin-bottom: 15px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types, .tags { margin: 20px 0; }
        .game-types a, .tags a { color: #FF9933; text-decoration: none; margin: 0 5px; }
        .copyright { margin-top: 15px; font-size: 14px; color: #aaa; }
