body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f9f9f9; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF5722; color: white; padding: 15px 0; text-align: center; position: relative; }
        .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: 500; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { color: #FF5722; text-align: center; margin-bottom: 30px; }
        h2 { color: #444; border-bottom: 2px solid #FF5722; padding-bottom: 5px; margin-top: 40px; }
        h3 { color: #666; margin-top: 30px; }
        .download-btn, .login-btn { display: inline-block; background-color: #4CAF50; color: white; padding: 12px 25px; text-align: center; border-radius: 5px; margin: 15px 0; text-decoration: none; font-weight: bold; }
        .login-btn { background-color: #2196F3; }
        .game-stats { background-color: #e8f5e9; padding: 15px; border-radius: 5px; margin: 20px 0; }
        .player-quote { font-style: italic; border-left: 4px solid #FF5722; padding-left: 15px; margin: 20px 0; }
        .strategy-section { background-color: #fff8e1; padding: 15px; border-radius: 5px; margin: 20px 0; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
        .tag-cloud { margin: 20px 0; }
        .tag-cloud a { color: white; background-color: #666; padding: 5px 10px; border-radius: 15px; margin: 0 5px; text-decoration: none; }
        .game-types { margin: 20px 0; }
        .game-types a { color: #FF5722; text-decoration: none; font-weight: bold; }
        img { max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 8px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .container { padding: 10px; }
        }
