body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6b35; color: white; padding: 15px 0; text-align: center; position: relative; }
        header .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        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; right: 20px; top: 20px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { font-size: 2.5em; margin-bottom: 20px; color: #ff6b35; text-align: center; }
        h2 { font-size: 1.8em; margin: 30px 0 15px; color: #444; border-bottom: 2px solid #ff6b35; padding-bottom: 5px; }
        h3 { font-size: 1.4em; margin: 20px 0 10px; color: #666; }
        p { margin-bottom: 15px; }
        .btn { display: inline-block; background-color: #ff6b35; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        .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-reviews { background-color: #e9f7ef; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .local-events { background-color: #fff3e0; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .community-discussions { background-color: #e3f2fd; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        footer a { color: #ff6b35; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 2em; }
            h2 { font-size: 1.5em; }
        }
